diff options
author | Zubin Duggal <zubin.duggal@gmail.com> | 2022-11-08 15:21:20 +0530 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-11-11 00:27:31 -0500 |
commit | 707d5651e17c8cbc95c67f89a3dca7a4d4b03e49 (patch) | |
tree | 34b9eab62a7d288a1e037313494e150b35fdd95b /m4/find_llvm_prog.m4 | |
parent | 8e6ae8827a75ae2d44e1c08098f3a68fd39c2a24 (diff) | |
download | haskell-707d5651e17c8cbc95c67f89a3dca7a4d4b03e49.tar.gz |
Clarify that LLVM upper bound is non-inclusive during configure (#22411)
Diffstat (limited to 'm4/find_llvm_prog.m4')
-rw-r--r-- | m4/find_llvm_prog.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/find_llvm_prog.m4 b/m4/find_llvm_prog.m4 index 8aaa6179c3..353765a0fd 100644 --- a/m4/find_llvm_prog.m4 +++ b/m4/find_llvm_prog.m4 @@ -18,15 +18,15 @@ AC_DEFUN([FIND_LLVM_PROG],[ AS_IF([test x"$PROG_VERSION" = x], [AC_MSG_RESULT(no) $1="" - AC_MSG_NOTICE([We only support llvm $3 to $4 (no version found).])], + AC_MSG_NOTICE([We only support llvm $3 upto $4 (non-inclusive) (no version found).])], [AC_MSG_CHECKING([$$1 version ($PROG_VERSION) is between $3 and $4]) AX_COMPARE_VERSION([$PROG_VERSION], [lt], [$3], [AC_MSG_RESULT(no) $1="" - AC_MSG_NOTICE([We only support llvm $3 to $4 (found $PROG_VERSION).])], + AC_MSG_NOTICE([We only support llvm $3 upto $4 (non-inclusive) (found $PROG_VERSION).])], [AX_COMPARE_VERSION([$PROG_VERSION], [ge], [$4], [AC_MSG_RESULT(no) $1="" - AC_MSG_NOTICE([We only support llvm $3 to $4 (found $PROG_VERSION).])], + AC_MSG_NOTICE([We only support llvm $3 upto $4 (non-inclusive) (found $PROG_VERSION).])], [AC_MSG_RESULT(yes)])])])]) ]) |