[Lldb-commits] [PATCH] D86722: [lldb] Make lldb-argdumper a dependency of liblldb

Jonas Devlieghere via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 27 08:49:48 PDT 2020


JDevlieghere created this revision.
JDevlieghere added reviewers: kastiglione, davide.
Herald added a subscriber: mgorny.
JDevlieghere requested review of this revision.

Always make `lldb-argdumper` a dependency of `liblldb`. Currently it is only a dependency of the python swig target because of the relative symlink in the python resource directory. That means that the dependency won't be there when `LLDB_ENABLE_PYTHON` is disabled.


https://reviews.llvm.org/D86722

Files:
  lldb/tools/argdumper/CMakeLists.txt


Index: lldb/tools/argdumper/CMakeLists.txt
===================================================================
--- lldb/tools/argdumper/CMakeLists.txt
+++ lldb/tools/argdumper/CMakeLists.txt
@@ -4,3 +4,5 @@
   LINK_COMPONENTS
     Support
 )
+
+add_dependencies(liblldb lldb-argdumper)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D86722.288354.patch
Type: text/x-patch
Size: 286 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200827/c06194d9/attachment.bin>


More information about the lldb-commits mailing list