diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2011-04-01 19:36:06 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2011-04-01 19:36:06 +0000 |
commit | c2db19ebf41e4d46638c1442121ed3b292a33848 (patch) | |
tree | 5d449c223d8b824e9b6cc5a170fc3043d9eff524 /cmake | |
parent | a4485c49641a492688276a061ddd0cb38d38e270 (diff) | |
download | external_llvm-c2db19ebf41e4d46638c1442121ed3b292a33848.zip external_llvm-c2db19ebf41e4d46638c1442121ed3b292a33848.tar.gz external_llvm-c2db19ebf41e4d46638c1442121ed3b292a33848.tar.bz2 |
Fix assignment of -fPIC to CMAKE_C_FLAGS. Configure llvm-config.in.in
with the contents of CMAKE_C(XX)_FLAGS too, else `llvm-config
--c(xx)flags' doesn't tell the absolute truth.
This comes from PR9603 and is based on a patch by Ryuta Suzuki!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/modules/HandleLLVMOptions.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake index e1f06a7..2c216f3 100644 --- a/cmake/modules/HandleLLVMOptions.cmake +++ b/cmake/modules/HandleLLVMOptions.cmake @@ -84,7 +84,7 @@ if( LLVM_ENABLE_PIC ) if( SUPPORTS_FPIC_FLAG ) message(STATUS "Building with -fPIC") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC") - set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -fPIC") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC") else( SUPPORTS_FPIC_FLAG ) message(WARNING "-fPIC not supported.") endif() |