bpo-30345: travis: use -Og with --with-pydebug (GH-14423) · python/cpython@21cfae1 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 21cfae1

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 2 additions & 1 deletion

Original file line number Diff line number Diff line change
@@ -166,7 +166,8 @@ install:
166 166
167 167 # Travis provides only 2 cores, so don't overdo the parallelism and waste memory.
168 168 before_script:
169 - - ./configure --with-pydebug
169 +# -Og is much faster than -O0
170 + - CFLAGS="${CFLAGS} -Og" ./configure --with-pydebug
170 171 - make -j4 regen-all
171 172 - changes=`git status --porcelain`
172 173 - |