about summary refs log tree commit diff homepage
path: root/cmake/find_llvm.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/find_llvm.cmake')
-rw-r--r--cmake/find_llvm.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/cmake/find_llvm.cmake b/cmake/find_llvm.cmake
index 874bd1ae..8527221a 100644
--- a/cmake/find_llvm.cmake
+++ b/cmake/find_llvm.cmake
@@ -33,8 +33,14 @@ if (USE_CMAKE_FIND_PACKAGE_LLVM)
     llvm_map_components_to_libnames(${output_var} ${ARGN})
     set(${output_var} ${${output_var}} PARENT_SCOPE)
   endfunction()
+
   # HACK: This information is not exported so just pretend its OFF for now.
   set(LLVM_ENABLE_VISIBILITY_INLINES_HIDDEN OFF)
+
+  # make LLVM_DEFINITIONS into proper list
+  set(_new_llvm_definitions "${LLVM_DEFINITIONS}")
+  string(REPLACE " " ";" LLVM_DEFINITIONS "${_new_llvm_definitions}")
+  unset(_new_llvm_definitions)
 else()
   # Use the llvm-config binary to get the information needed.
   # Try to detect it in the user's environment. The user can force a particular