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 a7ad891 commit 8e22d30Copy full SHA for 8e22d30
genbindings.sh
@@ -429,7 +429,9 @@ if [ "$HOST_OSX" = "true" ]; then
429
fi
430
431
else
432
- CLANG_LLVM_V=$(clang --version | head -n1 | awk '{ print substr($4, 0, 2); }')
+ # Output is something like clang version 17.0.3 (Fedora 17.0.3-1.fc39) or Debian clang version 14.0.6
433
+ CLANG_LLVM_V=$(clang --version | head -n1 | awk '{ print substr($3, 0, 2); }')
434
+ [ "$CLANG_LLVM_V" = "ve" ] && CLANG_LLVM_V=$(clang --version | head -n1 | awk '{ print substr($4, 0, 2); }')
435
if [ -x "$(which ld.lld)" ]; then
436
LLD_LLVM_V="$(ld.lld --version | awk '{ print $2; }')"
437
if [ "$LLD_LLVM_V" = "LLD" ]; then # eg if the output is "Debian LLD ..."
0 commit comments