From 931b2cc7007a715a350d4caba5157e1620b9cf73 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 21 May 2020 10:00:51 -0400 Subject: [PATCH] temp disable Python optimizations --- src/travis/linux-before-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/travis/linux-before-install.sh b/src/travis/linux-before-install.sh index dcbaafa6..7da30cda 100755 --- a/src/travis/linux-before-install.sh +++ b/src/travis/linux-before-install.sh @@ -72,7 +72,7 @@ else unsafe_flags="--enable-optimizations --with-lto" if [ ! -e Makefile ]; then echo "running configure with safe and unsafe" - ./configure $safe_flags $unsafe_flags > /dev/null + ./configure $safe_flags # $unsafe_flags > /dev/null fi make -j$cpucount PROFILE_TASK="-m test.regrtest --pgo -j$(( $cpucount * 2 ))" -s RESULT=$?