[Lldb-commits] [lldb] f328922 - [lldb] Make the rumtimes target a test dependency

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 31 14:25:17 PDT 2022


Author: Jonas Devlieghere
Date: 2022-08-31T14:25:07-07:00
New Revision: f328922f55fe62a587a3ec0cd7253861cadba85e

URL: https://github.com/llvm/llvm-project/commit/f328922f55fe62a587a3ec0cd7253861cadba85e
DIFF: https://github.com/llvm/llvm-project/commit/f328922f55fe62a587a3ec0cd7253861cadba85e.diff

LOG: [lldb] Make the rumtimes target a test dependency

Make the rumtimes target a test dependency. This is needed or the parts
of the test suite that rely on the libcxx and libcxxabi.

Differential revision: https://reviews.llvm.org/D133046

Added: 
    

Modified: 
    lldb/test/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/lldb/test/CMakeLists.txt b/lldb/test/CMakeLists.txt
index 938420aea18ea..e2a0443499899 100644
--- a/lldb/test/CMakeLists.txt
+++ b/lldb/test/CMakeLists.txt
@@ -107,6 +107,10 @@ if(TARGET clang)
     add_lldb_test_dependency(compiler-rt)
   endif()
 
+  if (TARGET runtimes)
+    add_lldb_test_dependency(runtimes)
+  endif()
+
   if(APPLE AND NOT LLVM_TARGET_IS_CROSSCOMPILE_HOST)
     # FIXME: Standalone builds should import the cxx target as well.
     if(LLDB_BUILT_STANDALONE)


        


More information about the lldb-commits mailing list