Skip to content

Commit 955a046

Browse files
committed
Ignore LLVM Version
While we do want to drop this, for now, to keep the diff to upstream small, we will just disable it with [10,100] range, which should include all relevent LLVM versions in the foresable future.
1 parent cb9116f commit 955a046

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

configure.ac

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ AC_CHECK_PROGS([PYTHON], [python3 python python2])
6969
AS_IF([test "x$PYTHON" = x], [AC_MSG_ERROR([Python interpreter not found. Please install Python or set PYTHON environment variable.])])
7070
AC_SUBST([PYTHON])
7171

72+
# FIXME: For now we keep this check, but just widen it aggressively.
73+
# At some point we should just outright remove this.
74+
LlvmMinVersion=10 # inclusive
75+
LlvmMaxVersion=100 # not inclusive
76+
AC_SUBST([LlvmMinVersion])
77+
AC_SUBST([LlvmMaxVersion])
78+
7279
# --- Files to generate ---
7380
# config.status will create these files by substituting @VAR@ placeholders.
7481
AC_CONFIG_FILES([

0 commit comments

Comments
 (0)