We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b0625c commit 793f820Copy full SHA for 793f820
cmake/Findllvm.cmake
@@ -12,6 +12,10 @@
12
if(ZIG_USE_LLVM_CONFIG)
13
set(LLVM_CONFIG_ERROR_MESSAGES "")
14
while(1)
15
+ # If this variable is not unset, the same result is returned even though
16
+ # the ignore list has changed, causing the configure process to not
17
+ # terminate when the right LLVM version is not found.
18
+ unset(LLVM_CONFIG_EXE CACHE)
19
find_program(LLVM_CONFIG_EXE
20
NAMES llvm-config-18 llvm-config-18.0 llvm-config180 llvm-config18 llvm-config NAMES_PER_DIR
21
PATHS
0 commit comments