Without this trying to link static LLVM libraries (built with Z3 enabled) fails because llvm-config doesn't print -lz3.
We are already using this patch at MSYS2: https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-clang/0013-Add-Z3-to-system-libraries-list-if-enabled.patch
Details
Details
- Reviewers
mikhail.ramalho - Commits
- rG30967e51da61: Add Z3 to system libraries list if enabled
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
I'll update it soon.
llvm/lib/Support/CMakeLists.txt | ||
---|---|---|
207 | Actually I forgot to remove ${Z3_LINK_FILES} here. |
Comment Actions
This is actually failing on another machine I have because of the lib name. This fixes it:
----------------------- index a571d269b39..2da2f203a28 100644 @@ -57,9 +57,7 @@ endif() # Link Z3 if the user wants to build it. if(LLVM_WITH_Z3) - set(Z3_LINK_FILES ${Z3_LIBRARIES}) -else() - set(Z3_LINK_FILES "") + set(system_libs ${system_libs} ${Z3_LIBRARIES}) endif() add_llvm_component_library(LLVMSupport @@ -206,7 +204,7 @@ add_llvm_component_library(LLVMSupport ${LLVM_MAIN_INCLUDE_DIR}/llvm/ADT ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support ${Backtrace_INCLUDE_DIRS} - LINK_LIBS ${system_libs} ${imported_libs} ${delayload_flags} ${Z3_LINK_FILES} + LINK_LIBS ${system_libs} ${imported_libs} ${delayload_flags} ) set(llvm_system_libs ${system_libs})
Actually I forgot to remove ${Z3_LINK_FILES} here.