From a71a772e9a5008689c749b57a4ced8bb30f63daa Mon Sep 17 00:00:00 2001 From: Michael Kruse Date: Thu, 9 Mar 2023 10:48:02 -0600 Subject: [Polly] Fix plugin build. The target_link_libraries call was accidentially removed in D142580 (Remove Polly-ACC). --- polly/lib/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'polly') diff --git a/polly/lib/CMakeLists.txt b/polly/lib/CMakeLists.txt index 2847d689c09d..e17333b76dca 100644 --- a/polly/lib/CMakeLists.txt +++ b/polly/lib/CMakeLists.txt @@ -126,6 +126,12 @@ else () $ ) + # Only add the dependencies that are not part of LLVM. The latter are assumed + # to be already available in the address space the module is loaded into. + # Adding them once more would have the effect that both copies try to register + # the same command line options, to which LLVM reacts with an error. + target_link_libraries(LLVMPolly PUBLIC ${ISL_TARGET}) + set_target_properties(LLVMPolly PROPERTIES LINKER_LANGUAGE CXX -- cgit v1.2.1