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.
This commit is contained in:
prazzb 2018-08-13 22:55:19 +05:30
parent 65497121f4
commit 6e55f61581

View File

@ -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"