about summary refs log tree commit diff homepage
path: root/lib/Module
diff options
context:
space:
mode:
authorMartin Nowack <m.nowack@imperial.ac.uk>2023-03-22 11:13:20 +0000
committerFrank Busse <f.busse@imperial.ac.uk>2023-03-22 20:52:25 +0000
commit5607a7f1910e579acc0b93b1ae2caba88e7d5fd7 (patch)
tree586a8d40348940aed51a6c406dd35984da159ecb /lib/Module
parent318c63700372099a60566a3af4e0ec02dfd22073 (diff)
downloadklee-5607a7f1910e579acc0b93b1ae2caba88e7d5fd7.tar.gz
Change `llvm_map_components_to_libnames` to `llvm_config` CMake function
With recent LLVM versions, this should allow to link against dynamic LLVM
libraries.
Diffstat (limited to 'lib/Module')
-rw-r--r--lib/Module/CMakeLists.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Module/CMakeLists.txt b/lib/Module/CMakeLists.txt
index c81d395e..e1f548e8 100644
--- a/lib/Module/CMakeLists.txt
+++ b/lib/Module/CMakeLists.txt
@@ -26,7 +26,8 @@ add_library(kleeModule
   ${KLEE_MODULE_COMPONENT_SRCS}
 )
 
-llvm_map_components_to_libnames(llvm_libs bitreader
+llvm_config(kleeModule "${USE_LLVM_SHARED}"
+  bitreader
   bitwriter
   codegen
   ipo
@@ -42,8 +43,6 @@ llvm_map_components_to_libnames(llvm_libs bitreader
   binaryformat
   )
 
-target_link_libraries(kleeModule PRIVATE ${llvm_libs})
-
 target_link_libraries(kleeModule PRIVATE
   kleeSupport
 )