diff options
author | Andres Gomez <agomez@igalia.com> | 2018-02-14 00:42:57 +0200 |
---|---|---|
committer | Andres Gomez <agomez@igalia.com> | 2018-02-20 17:03:06 +0200 |
commit | 36ac485bd1c99412717d2b3023c490d26ca91f92 (patch) | |
tree | 30a44a5d06cad082ee1ecfbfc6c3ee6ab96c5137 /configure.ac | |
parent | b39f6d5fc7cec07249cf3fa23ba6163546a9a73b (diff) |
swr: bump minimum supported LLVM version to 4.0
Since radv and radeonsi removed support for LLVM 3.9 the distcheck
target got broken because SWR distribution needed 3.9.x.
After checking with George Kyriazis, SWR is OK with moving to LLVM 4.0
and above, which will solve this problem.
Fixes: 3bf1e036e8a ("amd: remove support for LLVM 3.9")
Cc: George Kyriazis <george.kyriazis@intel.com>
Cc: Tim Rowley <timothy.o.rowley@intel.com>
Cc: Emil Velikov <emil.velikov@collabora.com>
Cc: Dylan Baker <dylan@pnwbakers.com>
Cc: Eric Engestrom <eric.engestrom@imgtec.com>
Signed-off-by: Andres Gomez <agomez@igalia.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Reviewed-by: George Kyriazis <george.kyriazis@intel.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 994052d5c4..d37cb67a46 100644 --- a/configure.ac +++ b/configure.ac @@ -105,7 +105,7 @@ LLVM_REQUIRED_OPENCL=3.9.0 LLVM_REQUIRED_R600=3.9.0 LLVM_REQUIRED_RADEONSI=4.0.0 LLVM_REQUIRED_RADV=4.0.0 -LLVM_REQUIRED_SWR=3.9.0 +LLVM_REQUIRED_SWR=4.0.0 dnl Check for progs AC_PROG_CPP @@ -2695,8 +2695,8 @@ if test -n "$with_gallium_drivers"; then fi # XXX: Keep in sync with LLVM_REQUIRED_SWR -AM_CONDITIONAL(SWR_INVALID_LLVM_VERSION, test "x$LLVM_VERSION" != x3.9.0 -a \ - "x$LLVM_VERSION" != x3.9.1) +AM_CONDITIONAL(SWR_INVALID_LLVM_VERSION, test "x$LLVM_VERSION" != x4.0.0 -a \ + "x$LLVM_VERSION" != x4.0.1) if test "x$enable_llvm" = "xyes" -a "$with_gallium_drivers"; then llvm_require_version $LLVM_REQUIRED_GALLIUM "gallium" |