]> granicus.if.org Git - python/commitdiff
Issue #8625: Turn off gcc optimization in debug builds.
authorMark Dickinson <dickinsm@gmail.com>
Wed, 5 May 2010 22:23:58 +0000 (22:23 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Wed, 5 May 2010 22:23:58 +0000 (22:23 +0000)
Misc/NEWS
configure
configure.in

index 31c83bdb149ae99a1a3c3c17af357241f6a03315..ea227a4088f4a084a07006333327dfebc8223b2c 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -191,6 +191,11 @@ Tests
 Build
 -----
 
+- Issue #8625: Turn off optimization in --with-pydebug builds with gcc.
+  (Optimization was unintentionally turned on in gcc --with-pydebug builds in
+  2.7 beta1 as a result of the issue #1628484 fix, combined with autoconf's
+  strange choice of default CFLAGS produced by AC_PROG_CC for gcc.)
+
 - Issue #8509: Fix quoting in help strings and code snippets in configure.in.
 
 - Issue #3646: It is now easily possible to install a Python framework into
index ed2da6176f7f9286afc71e0bbb197faf3acb2aa8..4ab9e55b3221a3baa5fe8521ebbcfced9ec7bf52 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 80647 .
+# From configure.in Revision: 80665 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 2.7.
 #
@@ -4659,7 +4659,7 @@ then
            if test "$Py_DEBUG" = 'true' ; then
                # Optimization messes up debuggers, so turn it off for
                # debug builds.
-               OPT="-g -Wall $STRICT_PROTO"
+               OPT="-g -O0 -Wall $STRICT_PROTO"
            else
                OPT="-g $WRAP -O3 -Wall $STRICT_PROTO"
            fi
index 4def2d42b899b5a5e82f8ad0e2a37eb5eb51fe2a..21496838c32da6cf64a6970c54d1e486f536c12c 100644 (file)
@@ -942,7 +942,7 @@ then
            if test "$Py_DEBUG" = 'true' ; then
                # Optimization messes up debuggers, so turn it off for
                # debug builds.
-               OPT="-g -Wall $STRICT_PROTO"
+               OPT="-g -O0 -Wall $STRICT_PROTO"
            else
                OPT="-g $WRAP -O3 -Wall $STRICT_PROTO"
            fi