From: Jordan Rose Date: Sat, 2 Mar 2013 01:00:40 +0000 (+0000) Subject: CMake: Always include the CheckCXXCompilerFlag in HandleLLVMOptions.cmake. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=e2abe051745efbddc58402bd6240aa91e821fe8f;ds=sidebyside CMake: Always include the CheckCXXCompilerFlag in HandleLLVMOptions.cmake. Previously we relied on it being included by config-ix.cmake. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176396 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake index 91210804c38..a83be41b228 100644 --- a/cmake/modules/HandleLLVMOptions.cmake +++ b/cmake/modules/HandleLLVMOptions.cmake @@ -4,6 +4,7 @@ include(AddLLVMDefinitions) include(CheckCCompilerFlag) +include(CheckCXXCompilerFlag) if( CMAKE_COMPILER_IS_GNUCXX ) set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON) @@ -66,7 +67,6 @@ if( LLVM_ENABLE_PIC ) elseif( WIN32 OR CYGWIN) # On Windows all code is PIC. MinGW warns if -fPIC is used. else() - include(CheckCXXCompilerFlag) check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG) if( SUPPORTS_FPIC_FLAG ) message(STATUS "Building with -fPIC")