From: Cheng Shao Date: Thu, 27 Jan 2022 12:12:14 +0000 (+0000) Subject: [PATCH] configure: bump LlvmMaxVersion to 14 X-Git-Tag: archive/raspbian/9.0.2-4+rpi1~1^2^2^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1f48e8321337772fbb69b1dd5b99c44f78bf7c1c;p=ghc.git [PATCH] 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. Gbp-Pq: Name 78db231ffdf8385662812781c1d09c630cfad313.patch --- diff --git a/configure.ac b/configure.ac index 6d014604..1210c192 100644 --- a/configure.ac +++ b/configure.ac @@ -719,7 +719,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/\./,/')