[Lldb-commits] [PATCH] D68614: [LLDB] Remove standalone build dep on llvm-strip
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 9 14:07:13 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rG988ad4194848: [LLDB] Remove standalone build dep on llvm-strip (authored by JDevlieghere).
Changed prior to commit:
https://reviews.llvm.org/D68614?vs=224148&id=224160#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68614/new/
https://reviews.llvm.org/D68614
Files:
lldb/test/CMakeLists.txt
Index: lldb/test/CMakeLists.txt
===================================================================
--- lldb/test/CMakeLists.txt
+++ lldb/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-strip)
+endif()
+
if(TARGET lld)
add_lldb_test_dependency(lld)
else()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D68614.224160.patch
Type: text/x-patch
Size: 507 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20191009/610f7882/attachment.bin>
More information about the lldb-commits
mailing list