diff options
author | Andres Gomez <[email protected]> | 2018-02-14 00:42:57 +0200 |
---|---|---|
committer | Andres Gomez <[email protected]> | 2018-02-20 17:03:06 +0200 |
commit | 36ac485bd1c99412717d2b3023c490d26ca91f92 (patch) | |
tree | 30a44a5d06cad082ee1ecfbfc6c3ee6ab96c5137 /.travis.yml | |
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 <[email protected]>
Cc: Tim Rowley <[email protected]>
Cc: Emil Velikov <[email protected]>
Cc: Dylan Baker <[email protected]>
Cc: Eric Engestrom <[email protected]>
Signed-off-by: Andres Gomez <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Reviewed-by: George Kyriazis <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index 3651d00169f..0ec08e5bff7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -90,12 +90,10 @@ matrix: - BUILD=make - MAKEFLAGS="-j4" - MAKE_CHECK_COMMAND="true" - - LLVM_VERSION=3.9 + - LLVM_VERSION=4.0 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}" - OVERRIDE_CC="gcc-4.8" - OVERRIDE_CXX="g++-4.8" - # New binutils linker is required for llvm-3.9 - - OVERRIDE_PATH=/usr/lib/binutils-2.26/bin - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl" - DRI_DRIVERS="" - GALLIUM_ST="--enable-dri --disable-opencl --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa" @@ -105,13 +103,12 @@ matrix: addons: apt: sources: - - llvm-toolchain-trusty-3.9 + - llvm-toolchain-trusty-4.0 packages: - - binutils-2.26 # LLVM packaging is broken and misses these dependencies - libedit-dev # From sources above - - llvm-3.9-dev + - llvm-4.0-dev # Common - xz-utils - x11proto-xf86vidmode-dev @@ -400,7 +397,7 @@ matrix: - BUILD=scons - SCONSFLAGS="-j4" - SCONS_TARGET="swr=1" - - LLVM_VERSION=3.9 + - LLVM_VERSION=4.0 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}" # Keep it symmetrical to the make build. There's no actual SWR, yet. - SCONS_CHECK_COMMAND="true" @@ -409,13 +406,13 @@ matrix: addons: apt: sources: - - llvm-toolchain-trusty-3.9 + - llvm-toolchain-trusty-4.0 packages: - scons # LLVM packaging is broken and misses these dependencies - libedit-dev # From sources above - - llvm-3.9-dev + - llvm-4.0-dev # Common - xz-utils - x11proto-xf86vidmode-dev |