diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake index abb4afc74db..52025a9ee2c 100755 --- a/cmake/config-ix.cmake +++ b/cmake/config-ix.cmake @@ -81,7 +81,11 @@ endif() include(CheckAtomic) include(CheckCXXCompilerFlag) -check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG) +# On windows all code is position-independent and mingw warns if -fPIC +# is in the command-line. +if( NOT WIN32 ) + check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG) +endif() include(GetTargetTriple) get_target_triple(LLVM_HOSTTRIPLE)