[Lldb-commits] [PATCH] D111981: [lldb] Fix missing dependency on libc++ from LLDB test suite on non-Darwin platforms
Raphael Isemann via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 18 06:59:58 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG366fb539485a: [lldb] Fix missing dependency on libc++ from LLDB test suite on non-Darwin… (authored by teemperor).
Herald added a subscriber: lldb-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111981/new/
https://reviews.llvm.org/D111981
Files:
lldb/test/CMakeLists.txt
Index: lldb/test/CMakeLists.txt
===================================================================
--- lldb/test/CMakeLists.txt
+++ lldb/test/CMakeLists.txt
@@ -135,9 +135,16 @@
"`LLDB_INCLUDE_TESTS=OFF`.")
endif()
endif()
- add_lldb_test_dependency(cxx)
endif()
endif()
+
+ # Add libc++ dependency for libc++-specific tests. This is an optional
+ # dependency as it's also possible to run the libc++ tests against the libc++
+ # installed on the system.
+ if (TARGET cxx)
+ add_lldb_test_dependency(cxx)
+ endif()
+
endif()
if (LLDB_BUILT_STANDALONE)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111981.380379.patch
Type: text/x-patch
Size: 607 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20211018/fb88fb1e/attachment.bin>
More information about the lldb-commits
mailing list