summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-02-05 21:23:15 -0500
committerBen Gamari <ben@smart-cactus.org>2022-02-09 15:56:11 -0500
commit3914cc8c389e658231339ab4e509610db4d82972 (patch)
tree7942c1ce25de5378838aa58596c0e25b7d6d8171
parent4dff9799f32a9f82ac2eb286775c2f9906082271 (diff)
downloadhaskell-3914cc8c389e658231339ab4e509610db4d82972.tar.gz
configure: Declare compatibility with LLVM 13
The testing that I have done on Windows thusfar suggests that it works.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2b2d4ef606..224eebb22a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -686,7 +686,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/\./,/')