From: Oscar Fuentes Date: Mon, 9 Aug 2010 03:47:11 +0000 (+0000) Subject: CMake: llvm_map_components_to_libraries now returns system libs too. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8150d8d530a2e30912592294a0af916337334ab0;p=oota-llvm.git CMake: llvm_map_components_to_libraries now returns system libs too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110563 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/LLVM.cmake b/cmake/modules/LLVM.cmake index 1f632711281..b055d83f918 100644 --- a/cmake/modules/LLVM.cmake +++ b/cmake/modules/LLVM.cmake @@ -8,7 +8,7 @@ set(LLVM_TARGETS_TO_BUILD @LLVM_TARGETS_TO_BUILD@) set(LLVM_TOOLS_BINARY_DIR @LLVM_TOOLS_BINARY_DIR@) -set(HAVE_LLVM_CONFIG @HAVE_LLVM_CONFIG@) +set(LLVM_ENABLE_THREADS @LLVM_ENABLE_THREADS@) if( NOT EXISTS LLVMConfig.cmake ) set(CMAKE_MODULE_PATH diff --git a/cmake/modules/LLVMConfig.cmake b/cmake/modules/LLVMConfig.cmake index 5c94b126b0d..c623bfaba8d 100755 --- a/cmake/modules/LLVMConfig.cmake +++ b/cmake/modules/LLVMConfig.cmake @@ -52,7 +52,8 @@ endfunction(explicit_llvm_config) # This is a variant intended for the final user: function(llvm_map_components_to_libraries OUT_VAR) explicit_map_components_to_libraries(result ${ARGN}) - set( ${OUT_VAR} ${result} ) + get_system_libs(sys_result) + set( ${OUT_VAR} ${result} ${sys_result} ) endfunction(llvm_map_components_to_libraries)