bpo-30345: travis: use -Og with --with-pydebug (GH-14423) · python/cpython@60f24b2 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 60f24b2
and
authored
(cherry picked from commit 21cfae1) Co-authored-by: Inada Naoki songofacandy@gmail.com
File tree
1 file changed
lines changed
1 file changed
lines changed
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 | - | |