]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Disable i586-mingw32msvc build for now
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 23 Jul 2016 20:44:12 +0000 (22:44 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 23 Jul 2016 20:44:12 +0000 (22:44 +0200)
The i586-mingw32msvc build fails since e527cccb because
i586-mingw32msvc-gcc is based on GCC 4.2 which apparently is too old to
have good enough C99 support.

More specifically, it doesn't build since the compiler emits a "C99
inline functions are not supported; using GNU89" warning, and we use
-Werror.

.travis.yml

index 1c5d0d9969396914056c824fcd6d6119f39d85cd..630a4f29372d40f41096cd4bfb67383b59276e8f 100644 (file)
@@ -18,9 +18,9 @@ compiler:
 
 matrix:
     include:
-        - os: linux
-          compiler: i586-mingw32msvc-gcc
-          env: HOST="--host=i586-mingw32msvc" TEST="test/main.exe"
+#        - os: linux
+#          compiler: i586-mingw32msvc-gcc
+#          env: HOST="--host=i586-mingw32msvc" TEST="test/main.exe"
         - os: linux
           compiler: clang
           env: CFLAGS="-fsanitize=address -g" ASAN_OPTIONS="detect_leaks=0"