Merge pull request #3637 from laytan/revert-clang++-detection

revert `$(llvm-config --bindir)/clang++` to get the cpp compiler
This commit is contained in:
gingerBill
2024-05-26 19:16:32 +01:00
committed by GitHub
+7 -1
View File
@@ -45,7 +45,13 @@ if [ -z "$LLVM_CONFIG" ]; then
fi
fi
: ${CXX=$($LLVM_CONFIG --bindir)/clang++}
if [ -x "$(which clang++)" ]; then
: ${CXX="clang++"}
elif [ -x "$($LLVM_CONFIG --bindir)/clang++" ]; then
: ${CXX=$($LLVM_CONFIG --bindir)/clang++}
else
error "No clang++ command found. Set CXX to proceed."
fi
LLVM_VERSION="$($LLVM_CONFIG --version)"
LLVM_VERSION_MAJOR="$(echo $LLVM_VERSION | awk -F. '{print $1}')"