diff options
author | Zubin Duggal <zubin.duggal@gmail.com> | 2021-06-17 16:25:46 +0530 |
---|---|---|
committer | Zubin <zubin.duggal@gmail.com> | 2021-06-18 07:52:18 +0000 |
commit | d0680897d5a4cda487e667a7e97f809da79d8789 (patch) | |
tree | 80ec9a68eb0cb4a7c54052afeeaef1e62dd50a2f /configure.ac | |
parent | a0622459f1d9a7068e81b8a707ffc63e153444f8 (diff) | |
download | haskell-wip/llvm-version-fix.tar.gz |
Set min LLVM version to 9 and make version checking use a non-inclusive upperwip/llvm-version-fix
bound.
We use a non-inclusive upper bound so that setting the upper bound to 13 for
example means that all 12.x versions are accepted.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index e3763055ec..38de5953b6 100644 --- a/configure.ac +++ b/configure.ac @@ -724,8 +724,8 @@ AC_SUBST(InstallNameToolCmd) # tools we are looking for. In the past, GHC supported a number of # versions of LLVM simultaneously, but that stopped working around # 3.5/3.6 release of LLVM. -LlvmMinVersion=10 -LlvmMaxVersion=12 # inclusive +LlvmMinVersion=9 # inclusive +LlvmMaxVersion=13 # not inclusive AC_SUBST([LlvmMinVersion]) AC_SUBST([LlvmMaxVersion]) sUPPORTED_LLVM_VERSION_MIN=$(echo \($LlvmMinVersion\) | sed 's/\./,/') |