forked from OSchip/llvm-project
CMake: Always include the CheckCXXCompilerFlag in HandleLLVMOptions.cmake.
Previously we relied on it being included by config-ix.cmake. llvm-svn: 176396
This commit is contained in:
parent
ee45c03fec
commit
643aa0e0dc
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
include(AddLLVMDefinitions)
|
include(AddLLVMDefinitions)
|
||||||
include(CheckCCompilerFlag)
|
include(CheckCCompilerFlag)
|
||||||
|
include(CheckCXXCompilerFlag)
|
||||||
|
|
||||||
if( CMAKE_COMPILER_IS_GNUCXX )
|
if( CMAKE_COMPILER_IS_GNUCXX )
|
||||||
set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON)
|
set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON)
|
||||||
|
@ -66,7 +67,6 @@ if( LLVM_ENABLE_PIC )
|
||||||
elseif( WIN32 OR CYGWIN)
|
elseif( WIN32 OR CYGWIN)
|
||||||
# On Windows all code is PIC. MinGW warns if -fPIC is used.
|
# On Windows all code is PIC. MinGW warns if -fPIC is used.
|
||||||
else()
|
else()
|
||||||
include(CheckCXXCompilerFlag)
|
|
||||||
check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
|
check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
|
||||||
if( SUPPORTS_FPIC_FLAG )
|
if( SUPPORTS_FPIC_FLAG )
|
||||||
message(STATUS "Building with -fPIC")
|
message(STATUS "Building with -fPIC")
|
||||||
|
|
Loading…
Reference in New Issue