From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 27 Jun 2019 17:23:59 +0000 (-0700) Subject: bpo-30345: travis: use -Og with --with-pydebug (GH-14423) X-Git-Tag: v3.8.0b2~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60f24b23bf6ac485d195bb904635bdc3fe646b07;p=python bpo-30345: travis: use -Og with --with-pydebug (GH-14423) (cherry picked from commit 21cfae107e410bf4b0ab3c142ca4449bc33290f5) Co-authored-by: Inada Naoki --- diff --git a/.travis.yml b/.travis.yml index d46f52c90d..1d470728a5 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` - |