[Lldb-commits] [lldb] a7e4a17 - [lldb] Make lldb-argdumper a dependency of liblldb
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 27 09:31:35 PDT 2020
Author: Jonas Devlieghere
Date: 2020-08-27T09:31:02-07:00
New Revision: a7e4a1773535c64dea5c1d72d6a0a3e24378eaa1
URL: https://github.com/llvm/llvm-project/commit/a7e4a1773535c64dea5c1d72d6a0a3e24378eaa1
DIFF: https://github.com/llvm/llvm-project/commit/a7e4a1773535c64dea5c1d72d6a0a3e24378eaa1.diff
LOG: [lldb] Make lldb-argdumper a dependency of liblldb
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.
Differential revision: https://reviews.llvm.org/D86722
Added:
Modified:
lldb/tools/argdumper/CMakeLists.txt
Removed:
################################################################################
diff --git a/lldb/tools/argdumper/CMakeLists.txt b/lldb/tools/argdumper/CMakeLists.txt
index 924946325194..29a2186af3cb 100644
--- a/lldb/tools/argdumper/CMakeLists.txt
+++ b/lldb/tools/argdumper/CMakeLists.txt
@@ -4,3 +4,5 @@ add_lldb_tool(lldb-argdumper ADD_TO_FRAMEWORK
LINK_COMPONENTS
Support
)
+
+add_dependencies(liblldb lldb-argdumper)
More information about the lldb-commits
mailing list