Commit 6e55f61581

prazzb <prazzb@gmail.com>
2018-08-13 19:25:19
Find local llvm-config first
Distro's llvm usually have a 6.0 suffix.Any custom llvm build names the binary as llvm-config.Keeping 6.0 variant first causes the distro's llvm to be compiled in place of a custom one even if given using CMAKE_PREFIX_PATH.
1 parent 6549712
Changed files (1)
cmake/Findllvm.cmake
@@ -8,7 +8,7 @@
 # LLVM_LIBDIRS
 
 find_program(LLVM_CONFIG_EXE
-    NAMES llvm-config-6.0 llvm-config
+    NAMES llvm-config llvm-config-6.0
     PATHS
         "/mingw64/bin"
         "/c/msys64/mingw64/bin"