summaryrefslogtreecommitdiff
path: root/tools/llvm-shlib
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@codeaurora.org>2015-02-23 19:15:08 +0000
committerChad Rosier <mcrosier@codeaurora.org>2015-02-23 19:15:08 +0000
commit3986322604e756eb762efd5a0610a58b206b62b3 (patch)
tree78c829c8a0753db719e9586c37741264aef6b948 /tools/llvm-shlib
parentc38816e9d8039fe7b3148c17dc481ccdb7dcf75a (diff)
Revert "Raising minimum required CMake version to 2.8.12.2."
This reverts commit 247aed4710e8befde76da42b27313661dea7cf66. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230240 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-shlib')
-rw-r--r--tools/llvm-shlib/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-shlib/CMakeLists.txt b/tools/llvm-shlib/CMakeLists.txt
index 08dafe13ae3..9a8cd4ad4b8 100644
--- a/tools/llvm-shlib/CMakeLists.txt
+++ b/tools/llvm-shlib/CMakeLists.txt
@@ -90,7 +90,7 @@ if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") # FIXME: It should be "GNU ld for el
set(LIB_NAMES -Wl,--whole-archive ${LIB_NAMES} -Wl,--no-whole-archive)
endif()
-target_link_libraries(LLVM PRIVATE ${LIB_NAMES})
+target_link_libraries(LLVM ${cmake_2_8_12_PRIVATE} ${LIB_NAMES})
add_dependencies(LLVM libLLVMExports)