summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-05-05 22:31:36 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-05-05 22:31:36 (GMT)
commitb2153e9d08b95c12c82b3d75cfaba837734c561b (patch)
tree259fb82df1d0dea5ad0bdd7360a4ac64cab1d9fc /Misc
parentae4d5c6b643c3efeb5f7b43ca9108978b388ab34 (diff)
downloadcpython-b2153e9d08b95c12c82b3d75cfaba837734c561b.zip
cpython-b2153e9d08b95c12c82b3d75cfaba837734c561b.tar.gz
cpython-b2153e9d08b95c12c82b3d75cfaba837734c561b.tar.bz2
Merged revisions 80832 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80832 | mark.dickinson | 2010-05-05 23:23:58 +0100 (Wed, 05 May 2010) | 2 lines Issue #8625: Turn off gcc optimization in debug builds. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 050a8f5..ef00387 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1145,6 +1145,12 @@ Extension Modules
Build
-----
+- Issue #8625: Turn off optimization in --with-pydebug builds with
+ gcc. (Optimization was unintentionally turned on in gcc
+ --with-pydebug builds 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 #3646: It is now easily possible to install a Python framework into
your home directory on MacOSX, see Mac/README for more information.