diff options
author | Inada Naoki <songofacandy@gmail.com> | 2019-06-27 17:05:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-27 17:05:37 (GMT) |
commit | 21cfae107e410bf4b0ab3c142ca4449bc33290f5 (patch) | |
tree | 4bdb90b38f20e0e80cb2a07624538ddd2405ce96 /.travis.yml | |
parent | 45a30af109f69a81576b87ea775863ba12d55316 (diff) | |
download | cpython-21cfae107e410bf4b0ab3c142ca4449bc33290f5.zip cpython-21cfae107e410bf4b0ab3c142ca4449bc33290f5.tar.gz cpython-21cfae107e410bf4b0ab3c142ca4449bc33290f5.tar.bz2 |
bpo-30345: travis: use -Og with --with-pydebug (GH-14423)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3e2cbb6..cff401f 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` - | |