From d7e84827bcaa7c84afacf9ba4f83f60f9391b620 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 19 Feb 2016 01:23:11 +0100 Subject: [PATCH] Try to avoid timeouts in AppVeyor Cygwin build Disable more libraries and use --disable-optimize instead of --enable-debug (also for MinGW) as we don't really need debug information in these builds and not generating it might make things faster. --- build/tools/appveyor.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/tools/appveyor.bat b/build/tools/appveyor.bat index e5f94ad758..991f4875df 100644 --- a/build/tools/appveyor.bat +++ b/build/tools/appveyor.bat @@ -32,7 +32,7 @@ set CHERE_INVOKING=yes :: Workaround for "configure: Bad file descriptor" perl -i".bak" -pe "s/^test -n \".DJDIR\"/#$&/" configure bash -lc "g++ --version" -bash -lc "CXXFLAGS=-Wno-deprecated-declarations ./configure --enable-debug --disable-xrc && make -j3" +bash -lc "CXXFLAGS=-Wno-deprecated-declarations ./configure --disable-optimise --disable-xrc && make -j3" goto :eof :cygwin @@ -42,5 +42,5 @@ set CHERE_INVOKING=yes :: Workaround for "configure: Bad file descriptor" perl -i".bak" -pe "s/^test -n \".DJDIR\"/#$&/" configure bash -lc "g++ --version" -bash -lc "LDFLAGS=-L/usr/lib/w32api ./configure --enable-debug --disable-shared --disable-html --disable-richtext --disable-stc && make -j3" +bash -lc "LDFLAGS=-L/usr/lib/w32api ./configure --disable-optimise --disable-shared --disable-aui --disable-html --disable-ribbon --disable-richtext --disable-stc && make -j3" goto :eof