summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-08-29 00:37:51 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-08-29 00:37:51 +0000
commit20f09ac39afbce2b862dc7542affd91fe4a3a6f0 (patch)
tree0bc14a784867737aaa429a4db9457b6add7b1bac /runtime
parentc3c237d8beefe332c6c589638acb6b5b29179387 (diff)
downloadllvm-20f09ac39afbce2b862dc7542affd91fe4a3a6f0.tar.gz
llvm-20f09ac39afbce2b862dc7542affd91fe4a3a6f0.tar.bz2
llvm-20f09ac39afbce2b862dc7542affd91fe4a3a6f0.tar.xz
libprofile: [CMake] Let libprofile_rt be not loadable_module but shared library. Autoconf's one does so.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162812 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/libprofile/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/libprofile/CMakeLists.txt b/runtime/libprofile/CMakeLists.txt
index 414ad00b4a..8609715b33 100644
--- a/runtime/libprofile/CMakeLists.txt
+++ b/runtime/libprofile/CMakeLists.txt
@@ -13,7 +13,8 @@ set_target_properties( profile_rt-static
PROPERTIES
OUTPUT_NAME "profile_rt" )
-add_llvm_loadable_module( profile_rt-shared ${SOURCES} )
+set(BUILD_SHARED_LIBS ON)
+add_llvm_library( profile_rt-shared ${SOURCES} )
set_target_properties( profile_rt-shared
PROPERTIES
OUTPUT_NAME "profile_rt" )