[libcxx-commits] [libcxx] Rework Modules CMake to be (more) idiomatic. (PR #84936)
via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 13 12:02:31 PDT 2024
================
@@ -50,10 +50,15 @@ endif()
target_compile_options(std
PUBLIC
-nostdinc++
+ @LIBCXX_COMPILE_FLAGS@
+)
+target_compile_options(std
+ PRIVATE
-Wno-reserved-module-identifier
-Wno-reserved-user-defined-literal
- @LIBCXX_COMPILE_FLAGS@
----------------
EricWF wrote:
It's moved to the PUBLIC section of the flags.
https://github.com/llvm/llvm-project/pull/84936
More information about the libcxx-commits
mailing list