[Lldb-commits] [PATCH] D16293: [cmake] Make dependencies of lldb libraries private
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Jan 27 03:06:08 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL258921: Fix linking with LLVM_LINK_LLVM_DYLIB=ON (authored by labath).
Changed prior to commit:
http://reviews.llvm.org/D16293?vs=45667&id=46116#toc
Repository:
rL LLVM
http://reviews.llvm.org/D16293
Files:
lldb/trunk/cmake/modules/AddLLDB.cmake
Index: lldb/trunk/cmake/modules/AddLLDB.cmake
===================================================================
--- lldb/trunk/cmake/modules/AddLLDB.cmake
+++ lldb/trunk/cmake/modules/AddLLDB.cmake
@@ -56,7 +56,7 @@
if (PARAM_OBJECT)
add_library(${name} ${libkind} ${srcs})
else()
- llvm_add_library(${name} ${libkind} ${srcs})
+ llvm_add_library(${name} ${libkind} DISABLE_LLVM_LINK_LLVM_DYLIB ${srcs})
lldb_link_common_libs(${name} "${libkind}")
@@ -93,7 +93,7 @@
endmacro(add_lldb_library)
macro(add_lldb_executable name)
- add_llvm_executable(${name} ${ARGN})
+ add_llvm_executable(${name} DISABLE_LLVM_LINK_LLVM_DYLIB ${ARGN})
set_target_properties(${name} PROPERTIES FOLDER "lldb executables")
endmacro(add_lldb_executable)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16293.46116.patch
Type: text/x-patch
Size: 770 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160127/01ceb4f5/attachment.bin>
More information about the lldb-commits
mailing list