[Lldb-commits] [PATCH] D39689: Add a dependency from check-lldb on lld

Stephane Sezer via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 6 09:48:00 PST 2017


sas updated this revision to Diff 121750.
sas added a comment.

Check only on Windows.


https://reviews.llvm.org/D39689

Files:
  test/CMakeLists.txt


Index: test/CMakeLists.txt
===================================================================
--- test/CMakeLists.txt
+++ test/CMakeLists.txt
@@ -113,6 +113,13 @@
 # to run tests.
 if (TARGET clang)
   add_dependencies(check-lldb clang)
+  if (CMAKE_SYSTEM_NAME MATCHES "Windows")
+    if (TARGET lld)
+      add_dependencies(check-lldb lld)
+    else ()
+      message(WARNING "lld required to test LLDB on Windows")
+    endif ()
+  endif ()
 endif()
 
 add_custom_target(lldb-test-depends DEPENDS ${LLDB_TEST_DEPENDS})


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39689.121750.patch
Type: text/x-patch
Size: 523 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20171106/1d0c0833/attachment-0001.bin>


More information about the lldb-commits mailing list