aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Davidson <colrdavidson@gmail.com>2022-03-09 07:24:49 -0800
committerColin Davidson <colrdavidson@gmail.com>2022-03-09 07:24:49 -0800
commita2250a5d4918498f6c68423c7dcd02c1910ceaec (patch)
treee9a4cae90308e4ad6cd2a6cd61baf73601c4aac9
parent7f8a9587e0d375486e3b45f9627463b8ec9421a1 (diff)
lower minimum llvm version
-rwxr-xr-xbuild_odin.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_odin.sh b/build_odin.sh
index dc6434e19..11d098952 100755
--- a/build_odin.sh
+++ b/build_odin.sh
@@ -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"