Skip to content

Commit 60f24b2

Browse files
bpo-30345: travis: use -Og with --with-pydebug (GH-14423)
(cherry picked from commit 21cfae1) Co-authored-by: Inada Naoki <[email protected]>
1 parent 6fbed53 commit 60f24b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ install:
166166

167167
# Travis provides only 2 cores, so don't overdo the parallelism and waste memory.
168168
before_script:
169-
- ./configure --with-pydebug
169+
# -Og is much faster than -O0
170+
- CFLAGS="${CFLAGS} -Og" ./configure --with-pydebug
170171
- make -j4 regen-all
171172
- changes=`git status --porcelain`
172173
- |

0 commit comments

Comments
 (0)