[PATCH] D118452: [polly][unittests] Link DeLICMTests with libLLVMCore

Rainer Orth via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 28 04:27:28 PST 2022


ro created this revision.
ro added a reviewer: beanz.
ro added a project: Polly.
Herald added subscribers: pengfei, asbirlea, fedor.sergeev, mgorny.
Herald added a reviewer: bollu.
ro requested review of this revision.
Herald added a project: LLVM.

A `-DBUILD_SHARED_LIBS=ON` build on Solaris/amd64 failed with

  Undefined                       first referenced
   symbol                             in file
  _ZNK4llvm3cfg6UpdateIPNS_10BasicBlockEE4dumpEv tools/polly/unittests/DeLICM/CMakeFiles/DeLICMTests.dir/DeLICMTest.cpp.o  (symbol belongs to implicit dependency /var/llvm/local-amd64-release-stage2-shared-A/bin/../lib/libLLVMCore.so.14git)
  ld: fatal: symbol referencing errors

Solaris `ld` requires to directly link with dependant libraries, so this patch explicitly adds
`libLLVMCore`.

Tested on `amd64-pc-solaris2.11` and `x86_64-pc-linux-gnu`.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D118452

Files:
  polly/unittests/DeLICM/CMakeLists.txt


Index: polly/unittests/DeLICM/CMakeLists.txt
===================================================================
--- polly/unittests/DeLICM/CMakeLists.txt
+++ polly/unittests/DeLICM/CMakeLists.txt
@@ -1,3 +1,7 @@
+set(LLVM_LINK_COMPONENTS
+  Core
+  )
+
 add_polly_unittest(DeLICMTests
   DeLICMTest.cpp
   )


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D118452.403964.patch
Type: text/x-patch
Size: 309 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220128/e65f114f/attachment.bin>


More information about the llvm-commits mailing list