summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Shao <astrohavoc@gmail.com>2022-01-27 12:12:14 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-03-23 13:40:17 -0400
commit78db231ffdf8385662812781c1d09c630cfad313 (patch)
tree8690b910d47f409046d46f9a99fec0392adb1261
parentb91798be48d9fa02610b419ccea15a7dfd663823 (diff)
downloadhaskell-78db231ffdf8385662812781c1d09c630cfad313.tar.gz
configure: bump LlvmMaxVersion to 14
LLVM 13.0.0 is released in Oct 2021, and latest head validates against LLVM 13 just fine if LlvmMaxVersion is bumped.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e8a95726a3..71879adeb0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -681,7 +681,7 @@ AC_SUBST(InstallNameToolCmd)
# versions of LLVM simultaneously, but that stopped working around
# 3.5/3.6 release of LLVM.
LlvmMinVersion=9 # inclusive
-LlvmMaxVersion=13 # not inclusive
+LlvmMaxVersion=14 # not inclusive
AC_SUBST([LlvmMinVersion])
AC_SUBST([LlvmMaxVersion])
sUPPORTED_LLVM_VERSION_MIN=$(echo \($LlvmMinVersion\) | sed 's/\./,/')