diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2015-02-11 18:41:01 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2015-02-11 18:41:01 (GMT) |
commit | 8b62bbf2e5bbaa392a79eb69c558b41dfe68e745 (patch) | |
tree | c3a8cfeea05cea6ed2c50de7d86c3bdd233281e0 /configure | |
parent | ce2c584ea55e001a9ea2228d62fb525c24aadf04 (diff) | |
parent | 3d6c784371bccc2407048652bce50c5bccf9b1af (diff) | |
download | cpython-8b62bbf2e5bbaa392a79eb69c558b41dfe68e745.zip cpython-8b62bbf2e5bbaa392a79eb69c558b41dfe68e745.tar.gz cpython-8b62bbf2e5bbaa392a79eb69c558b41dfe68e745.tar.bz2 |
Issue #23445: pydebug builds now use "gcc -Og" where possible, to make the resulting executable faster.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -6338,7 +6338,11 @@ then if test "$Py_DEBUG" = 'true' ; then # Optimization messes up debuggers, so turn it off for # debug builds. - OPT="-g -O0 -Wall $STRICT_PROTO" + if "$CC" -v --help 2>/dev/null |grep -- -Og > /dev/null; then + OPT="-g -Og -Wall $STRICT_PROTO" + else + OPT="-g -O0 -Wall $STRICT_PROTO" + fi else OPT="-g $WRAP -O3 -Wall $STRICT_PROTO" fi |