diff options
author | Cheng Shao <astrohavoc@gmail.com> | 2022-01-27 12:12:14 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-03-23 13:40:17 -0400 |
commit | 78db231ffdf8385662812781c1d09c630cfad313 (patch) | |
tree | 8690b910d47f409046d46f9a99fec0392adb1261 /configure.ac | |
parent | b91798be48d9fa02610b419ccea15a7dfd663823 (diff) | |
download | haskell-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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
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/\./,/') |