summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-10-19 04:16:05 (GMT)
committerNed Deily <nad@acm.org>2013-10-19 04:16:05 (GMT)
commit29eec66711d82c04a5ba2cde478b9da995dcbbdb (patch)
tree0718d44c6ade12bef873d293f6823015d6493572 /Misc
parent87adb6ef38393932cbab3a1ec3769bafc7d740e2 (diff)
downloadcpython-29eec66711d82c04a5ba2cde478b9da995dcbbdb.zip
cpython-29eec66711d82c04a5ba2cde478b9da995dcbbdb.tar.gz
cpython-29eec66711d82c04a5ba2cde478b9da995dcbbdb.tar.bz2
Issue #19019: Change the OS X installer build script to use CFLAGS instead
of OPT for special build options. By setting OPT, some compiler-specific options like -fwrapv were overridden and thus not used, which could result in broken interpreters when building with clang.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b986b30..d0f4eb9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -196,6 +196,11 @@ Build
3. -sysroot and -arch flags were unnecessarily duplicated
4. there was no obvious way to configure an intel-32 only build.
+- Issue #19019: Change the OS X installer build script to use CFLAGS instead
+ of OPT for special build options. By setting OPT, some compiler-specific
+ options like -fwrapv were overridden and thus not used, which could result
+ in broken interpreters when building with clang.
+
What's New in Python 3.4.0 Alpha 3?
===================================