File tree Expand file tree Collapse file tree 4 files changed +2
-10
lines changed Expand file tree Collapse file tree 4 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ sure you don't forget anything:
156
156
- Did you add all new named declarations to the ``std `` module?
157
157
- If you added a header:
158
158
159
- - Did you add it to ``include/module.modulemap.in ``?
159
+ - Did you add it to ``include/module.modulemap ``?
160
160
- Did you add it to ``include/CMakeLists.txt ``?
161
161
- If it's a public header, did you update ``utils/libcxx/header_information.py ``?
162
162
Original file line number Diff line number Diff line change @@ -965,6 +965,7 @@ set(files
965
965
mdspan
966
966
memory
967
967
memory_resource
968
+ module.modulemap
968
969
mutex
969
970
new
970
971
numbers
@@ -1018,18 +1019,10 @@ set(files
1018
1019
wctype.h
1019
1020
)
1020
1021
1021
- foreach (feature LIBCXX_ENABLE_FILESYSTEM LIBCXX_ENABLE_LOCALIZATION LIBCXX_ENABLE_THREADS LIBCXX_ENABLE_WIDE_CHARACTERS )
1022
- if (NOT ${${feature}} )
1023
- set (requires_${feature} "requires LIBCXX_CONFIGURED_WITHOUT_SUPPORT_FOR_THIS_HEADER" )
1024
- endif ()
1025
- endforeach ()
1026
-
1027
1022
configure_file ("__config_site.in" "${LIBCXX_GENERATED_INCLUDE_TARGET_DIR} /__config_site" @ONLY )
1028
- configure_file ("module.modulemap.in" "${LIBCXX_GENERATED_INCLUDE_DIR} /module.modulemap" @ONLY )
1029
1023
configure_file ("${LIBCXX_ASSERTION_HANDLER_FILE} " "${LIBCXX_GENERATED_INCLUDE_DIR} /__assertion_handler" COPYONLY )
1030
1024
1031
1025
set (_all_includes "${LIBCXX_GENERATED_INCLUDE_TARGET_DIR} /__config_site"
1032
- "${LIBCXX_GENERATED_INCLUDE_DIR} /module.modulemap"
1033
1026
"${LIBCXX_GENERATED_INCLUDE_DIR} /__assertion_handler" )
1034
1027
foreach (f ${files} )
1035
1028
set (src "${CMAKE_CURRENT_SOURCE_DIR} /${f} " )
File renamed without changes.
Original file line number Diff line number Diff line change 155
155
def is_header (file ):
156
156
"""Returns whether the given file is a header (i.e. not a directory or the modulemap file)."""
157
157
return not file .is_dir () and not file .name in [
158
- "module.modulemap.in" ,
159
158
"module.modulemap" ,
160
159
"CMakeLists.txt" ,
161
160
"libcxx.imp" ,
You can’t perform that action at this time.
0 commit comments