[PATCH] D85195: Add Z3 to system libraries list if enabled

Mikhail Ramalho via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 24 11:50:00 PDT 2020


mikhail.ramalho added a comment.

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})


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D85195/new/

https://reviews.llvm.org/D85195



More information about the llvm-commits mailing list