lower minimum llvm version

This commit is contained in:
Colin Davidson
2022-03-09 07:24:49 -08:00
parent 7f8a9587e0
commit a2250a5d49

View File

@@ -60,7 +60,7 @@ config_linux() {
panic "Unable to find LLVM-config"
fi
MIN_LLVM_VERSION=("11.1.0")
MIN_LLVM_VERSION=("11.0.0")
if [ $(version $($LLVM_CONFIG --version)) -lt $(version $MIN_LLVM_VERSION) ]; then
echo "Tried to use " $(which $LLVM_CONFIG) "version" $($LLVM_CONFIG --version)
panic "Requirement: llvm-config must be base version greater than 11"