Merge pull request #2453 from TriedAngle/patch-1

Fix: `Unable to find LLVM-config` on Ubuntu
This commit is contained in:
Jeroen van Rijn
2023-04-12 20:04:19 +02:00
committed by GitHub

View File

@@ -97,6 +97,8 @@ config_linux() {
LLVM_CONFIG=llvm-config-11
elif [ -x "$(command -v llvm-config-11-16)" ]; then
LLVM_CONFIG=llvm-config-11-64
elif [ -x "$(command -v llvm-config-14)" ]; then
LLVM_CONFIG=llvm-config-14
else
panic "Unable to find LLVM-config"
fi