[libcxx-commits] [PATCH] D145798: [libc++] Disables transitive includes in library.
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Mar 14 10:36:56 PDT 2023
Mordante updated this revision to Diff 505164.
Mordante marked an inline comment as done.
Mordante added a comment.
Addresses review comments. Give it a CI run before landing.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145798/new/
https://reviews.llvm.org/D145798
Files:
libcxx/CMakeLists.txt
Index: libcxx/CMakeLists.txt
===================================================================
--- libcxx/CMakeLists.txt
+++ libcxx/CMakeLists.txt
@@ -543,6 +543,11 @@
# library.
target_compile_definitions(${target} PRIVATE -D_LIBCPP_BUILDING_LIBRARY)
+ # Make sure the library can be build without transitive includes. This makes
+ # it easier to upgrade the library to a newer language standard without build
+ # errors.
+ target_compile_definitions(${target} PRIVATE -D_LIBCPP_REMOVE_TRANSITIVE_INCLUDES)
+
if (NOT LIBCXX_ENABLE_NEW_DELETE_DEFINITIONS)
target_compile_definitions(${target} PRIVATE -D_LIBCPP_DISABLE_NEW_DELETE_DEFINITIONS)
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145798.505164.patch
Type: text/x-patch
Size: 676 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230314/90174556/attachment.bin>
More information about the libcxx-commits
mailing list