[polly] r291637 - Teach Polly's unittest macro to link LLVMDemangle which LLVMSupport now

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 10 17:07:35 PST 2017


Author: chandlerc
Date: Tue Jan 10 19:07:35 2017
New Revision: 291637

URL: http://llvm.org/viewvc/llvm-project?rev=291637&view=rev
Log:
Teach Polly's unittest macro to link LLVMDemangle which LLVMSupport now
depends on...

Modified:
    polly/trunk/unittests/CMakeLists.txt

Modified: polly/trunk/unittests/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/unittests/CMakeLists.txt?rev=291637&r1=291636&r2=291637&view=diff
==============================================================================
--- polly/trunk/unittests/CMakeLists.txt (original)
+++ polly/trunk/unittests/CMakeLists.txt Tue Jan 10 19:07:35 2017
@@ -16,7 +16,7 @@ function(add_polly_unittest test_name)
 
     set_property(TARGET ${test_name} PROPERTY FOLDER "Polly")
   endif()
-  target_link_libraries(${test_name} Polly LLVMCore LLVMSupport)
+  target_link_libraries(${test_name} Polly LLVMCore LLVMSupport LLVMDemangle)
 endfunction()
 
 add_subdirectory(Isl)




More information about the llvm-commits mailing list