From cd750332d39dac24fd0929b602fa616fafb69521 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 22 Apr 2020 15:18:14 +0200 Subject: [PATCH] Disable debug info generation in Travis CI builds Debug info is useless in these builds and disabling it should hopefully speed them up a bit and take less space. --- build/tools/travis-ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/travis-ci.sh b/build/tools/travis-ci.sh index 3d88b54116..874ee26b2c 100755 --- a/build/tools/travis-ci.sh +++ b/build/tools/travis-ci.sh @@ -54,7 +54,7 @@ case $wxTOOLSET in ;; *) echo 'Configuring...' && echo -en 'travis_fold:start:script.configure\\r' - ./configure --disable-optimise $wxCONFIGURE_FLAGS + ./configure --disable-optimise --disable-debug_info $wxCONFIGURE_FLAGS echo -en 'travis_fold:end:script.configure\\r' echo 'Building...' && echo -en 'travis_fold:start:script.build\\r'