[Lldb-commits] [PATCH] D74891: [lldb] Never compile the debugserver with Clang module flags
Raphael Isemann via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Feb 26 04:25:22 PST 2020
teemperor updated this revision to Diff 246673.
teemperor added a comment.
- rebased on top of D75164 <https://reviews.llvm.org/D75164>
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D74891/new/
https://reviews.llvm.org/D74891
Files:
lldb/tools/debugserver/CMakeLists.txt
Index: lldb/tools/debugserver/CMakeLists.txt
===================================================================
--- lldb/tools/debugserver/CMakeLists.txt
+++ lldb/tools/debugserver/CMakeLists.txt
@@ -13,6 +13,11 @@
include(debugserverConfig)
include(AddLLDB)
+ # debugserver contains ObjC++ code, so let's disable Clang modules
+ # in this subdirectory to avoid building ObjC++ modules (which often
+ # doesn't properly work).
+ remove_module_flags()
+
set(LLDB_SOURCE_DIR "${CMAKE_SOURCE_DIR}/../../")
include_directories(${LLDB_SOURCE_DIR}/include)
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74891.246673.patch
Type: text/x-patch
Size: 579 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200226/035d5bbc/attachment.bin>
More information about the lldb-commits
mailing list