Skip to content

Commit

Permalink
Fix find-llvm-config on MSYS2
Browse files Browse the repository at this point in the history
  • Loading branch information
HertzDevil committed Oct 11, 2024
1 parent 991f9d0 commit ec204b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/llvm/ext/find-llvm-config
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if ! LLVM_CONFIG=$(command -v "$LLVM_CONFIG"); then
fi

if [ "$LLVM_CONFIG" ]; then
printf "$LLVM_CONFIG"
printf %s "$LLVM_CONFIG"
else
printf "Error: Could not find location of llvm-config. Please specify path in environment variable LLVM_CONFIG.\n" >&2
printf "Supported LLVM versions: $(cat "$(dirname $0)/llvm-versions.txt" | sed 's/\.0//g')\n" >&2
Expand Down

0 comments on commit ec204b4

Please sign in to comment.