diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2011-03-26 16:11:33 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2011-03-26 16:11:33 +0000 |
commit | 4f444d7c44485055253415673ff70fe25f85ffc9 (patch) | |
tree | 73522b4d58f80648ca2c78e521005bdc953cb658 | |
parent | 642b03413f9dc377c8fcffe868521bf61fffeea6 (diff) | |
download | bcm5719-llvm-4f444d7c44485055253415673ff70fe25f85ffc9.tar.gz bcm5719-llvm-4f444d7c44485055253415673ff70fe25f85ffc9.zip |
Removed workaround for unspecified build problem on MinGW.
Tested that MinGW/MSYS builds fine without that.
llvm-svn: 128341
-rw-r--r-- | clang/CMakeLists.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/clang/CMakeLists.txt b/clang/CMakeLists.txt index 6ebe3c4f602..a56d07488d9 100644 --- a/clang/CMakeLists.txt +++ b/clang/CMakeLists.txt @@ -182,11 +182,9 @@ macro(add_clang_library name) if (LLVM_COMMON_LIBS) target_link_libraries(${name} ${LLVM_COMMON_LIBS}) endif() - if( NOT MINGW ) - get_system_libs(llvm_system_libs) - if( llvm_system_libs ) - target_link_libraries(${name} ${llvm_system_libs}) - endif() + get_system_libs(llvm_system_libs) + if( llvm_system_libs ) + target_link_libraries(${name} ${llvm_system_libs}) endif() add_dependencies(${name} ClangDiagnosticCommon) if(MSVC) |