From 21cfae107e410bf4b0ab3c142ca4449bc33290f5 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Fri, 28 Jun 2019 02:05:37 +0900 Subject: [PATCH] bpo-30345: travis: use -Og with --with-pydebug (GH-14423) --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3e2cbb6fb0f..cff401f5bcb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -166,7 +166,8 @@ install: # Travis provides only 2 cores, so don't overdo the parallelism and waste memory. before_script: - - ./configure --with-pydebug + # -Og is much faster than -O0 + - CFLAGS="${CFLAGS} -Og" ./configure --with-pydebug - make -j4 regen-all - changes=`git status --porcelain` - |