[Lldb-commits] [PATCH] D68614: [LLDB] Remove standalone build dep on llvm-strip
Gwen Mittertreiner via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 9 13:47:19 PDT 2019
gmittert updated this revision to Diff 224147.
gmittert added a comment.
Updated/Rebased for the rename of lit->test
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68614/new/
https://reviews.llvm.org/D68614
Files:
test/CMakeLists.txt
Index: test/CMakeLists.txt
===================================================================
--- test/CMakeLists.txt
+++ test/CMakeLists.txt
@@ -58,9 +58,14 @@
llvm-mc
llvm-objcopy
llvm-readobj
- llvm-strip
)
+# Since llvm-strip is a symlink created by add_custom_target, it
+# doesn't expose an export target when building standalone.
+if(NOT LLDB_BUILT_STANDALONE)
+ add_lldb_test_dependency(llvm-stirp)
+endif()
+
if(TARGET lld)
add_lldb_test_dependency(lld)
else()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D68614.224147.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20191009/38eba18d/attachment-0001.bin>
More information about the lldb-commits
mailing list