From ddf5ca4d59f2e0ccbc85b53b3692d9a0f34b5f6b Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sat, 23 Jul 2016 22:44:12 +0200 Subject: [PATCH] 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. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" -- 2.47.2