summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2012-02-10 12:08:44 (GMT)
committerNed Deily <nad@acm.org>2012-02-10 12:08:44 (GMT)
commit7347df15041493bc126b55aee460caf823225efb (patch)
tree27ea8c0369f3cb968485fda5f3ca7c3ca1d93dc4 /Misc
parent176630ec1968e4467f8bd45745c6e402760be072 (diff)
parent9937748f0c5590f8d14a68b7aab5eac26e974be8 (diff)
downloadcpython-7347df15041493bc126b55aee460caf823225efb.zip
cpython-7347df15041493bc126b55aee460caf823225efb.tar.gz
cpython-7347df15041493bc126b55aee460caf823225efb.tar.bz2
Issue #13590: merge
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS13
1 files changed, 13 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e2fa04f..f16c0b7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -466,6 +466,19 @@ Core and Builtins
Library
-------
+- Issue #13590: On OS X 10.7 and 10.6 with Xcode 4.2, building
+ Distutils-based packages with C extension modules may fail because
+ Apple has removed gcc-4.2, the version used to build python.org
+ 64-bit/32-bit Pythons. If the user does not explicitly override
+ the default C compiler by setting the CC environment variable,
+ Distutils will now attempt to compile extension modules with clang
+ if gcc-4.2 is required but not found. Also as a convenience, if
+ the user does explicitly set CC, substitute its value as the default
+ compiler in the Distutils LDSHARED configuration variable for OS X.
+ (Note, the python.org 32-bit-only Pythons use gcc-4.0 and the 10.4u
+ SDK, neither of which are available in Xcode 4. This change does not
+ attempt to override settings to support their use with Xcode 4.)
+
- Issue #13960: HTMLParser is now able to handle broken comments when
strict=False.