[libcxx-commits] [PATCH] D119468: [libc++] Disable local submodule visibility in the modules build
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Feb 11 12:53:09 PST 2022
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG73382278825d: [libc++] Disable local submodule visibility in the modules build (authored by ldionne).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119468/new/
https://reviews.llvm.org/D119468
Files:
libcxx/include/module.modulemap
libcxx/utils/libcxx/test/params.py
Index: libcxx/utils/libcxx/test/params.py
===================================================================
--- libcxx/utils/libcxx/test/params.py
+++ libcxx/utils/libcxx/test/params.py
@@ -76,7 +76,6 @@
actions=lambda modules: [
AddFeature('modules-build'),
AddCompileFlag('-fmodules'),
- AddCompileFlag('-Xclang -fmodules-local-submodule-visibility'),
] if modules else []),
Parameter(name='enable_exceptions', choices=[True, False], type=bool, default=True,
Index: libcxx/include/module.modulemap
===================================================================
--- libcxx/include/module.modulemap
+++ libcxx/include/module.modulemap
@@ -2,8 +2,9 @@
// since __config may be included from C headers which may create an
// include cycle.
module std_config [system] [extern_c] {
- textual header "__config"
- textual header "__config_site"
+ header "__config"
+ header "__config_site"
+ export *
}
module std [system] {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D119468.408004.patch
Type: text/x-patch
Size: 1012 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220211/4023e01d/attachment.bin>
More information about the libcxx-commits
mailing list