cmake: Do not link in system libs

They are not needed any more.

llvm-svn: 202481
This commit is contained in:
Tobias Grosser 2014-02-28 10:11:20 +00:00
parent 261993ad1a
commit 4e9069291a

View File

@ -43,11 +43,6 @@ macro(add_polly_library name)
if( LLVM_LINK_COMPONENTS )
llvm_config(${name} ${LLVM_LINK_COMPONENTS})
endif( LLVM_LINK_COMPONENTS )
get_system_libs(llvm_system_libs)
if( llvm_system_libs )
target_link_libraries(${name} ${llvm_system_libs})
endif( llvm_system_libs )
if(MSVC)
get_target_property(cflag ${name} COMPILE_FLAGS)
if(NOT cflag)