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)


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to