summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-06-27 02:51:21 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-06-27 02:51:21 +0000
commit2db3151eabc30fd6b5f168e793a4fde782ddb1da (patch)
treee0550933c09ad8c72020eade50b1165e5882b68e /tools
parent20e4c0d24e2dded15f99d7d658d679fd5b55cdc3 (diff)
downloadllvm-2db3151eabc30fd6b5f168e793a4fde782ddb1da.tar.gz
llvm-2db3151eabc30fd6b5f168e793a4fde782ddb1da.tar.bz2
llvm-2db3151eabc30fd6b5f168e793a4fde782ddb1da.tar.xz
Don't force the build of toos/lto as a static lib.
Any uses of tools/lto as a static lib should probably move to lib/LTO. This was also never implemented in the configure build, so this reduces the differences among the two. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/CMakeLists.txt2
-rw-r--r--tools/lto/CMakeLists.txt6
2 files changed, 2 insertions, 6 deletions
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt
index 13b7f5af85..846ad1e25d 100644
--- a/tools/CMakeLists.txt
+++ b/tools/CMakeLists.txt
@@ -49,7 +49,7 @@ add_llvm_tool_subdirectory(llvm-c-test)
add_llvm_tool_subdirectory(obj2yaml)
add_llvm_tool_subdirectory(yaml2obj)
-if( NOT CYGWIN )
+if(NOT CYGWIN AND LLVM_ENABLE_PIC)
add_llvm_tool_subdirectory(lto)
add_llvm_tool_subdirectory(llvm-lto)
else()
diff --git a/tools/lto/CMakeLists.txt b/tools/lto/CMakeLists.txt
index 542053bf65..71391b7cf5 100644
--- a/tools/lto/CMakeLists.txt
+++ b/tools/lto/CMakeLists.txt
@@ -16,11 +16,7 @@ set(SOURCES
set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/lto.exports)
-if(NOT CYGWIN AND LLVM_ENABLE_PIC)
- set(ENABLE_SHARED SHARED)
-endif()
-
-add_llvm_library(LTO ${ENABLE_SHARED} STATIC ${SOURCES})
+add_llvm_library(LTO SHARED ${SOURCES})
install(FILES ${LLVM_MAIN_INCLUDE_DIR}/llvm-c/lto.h
DESTINATION include/llvm-c)