From: Joel Rosdahl Date: Sat, 23 Jul 2016 20:44:12 +0000 (+0200) Subject: Disable i586-mingw32msvc build for now X-Git-Tag: v3.3~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddf5ca4d59f2e0ccbc85b53b3692d9a0f34b5f6b;p=thirdparty%2Fccache.git Disable i586-mingw32msvc build for now 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. --- diff --git a/.travis.yml b/.travis.yml index 1c5d0d996..630a4f293 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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"