From: Hongbin Zheng Date: Thu, 3 Nov 2016 22:02:40 +0000 (+0000) Subject: Remove the unused POLLY_LINK_LIBS for linking polly into clang X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6fdc22eec34fd2b3c5cb5e0da21f6126d7fed9bd;p=clang Remove the unused POLLY_LINK_LIBS for linking polly into clang git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@285971 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/driver/CMakeLists.txt b/tools/driver/CMakeLists.txt index 5b02a4ec1e..f5fbff5d8e 100644 --- a/tools/driver/CMakeLists.txt +++ b/tools/driver/CMakeLists.txt @@ -117,9 +117,4 @@ endif() if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) target_link_libraries(clang Polly) - if(POLLY_LINK_LIBS) - foreach(lib ${POLLY_LINK_LIBS}) - target_link_libraries(clang ${lib}) - endforeach(lib) - endif(POLLY_LINK_LIBS) endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS)