summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-05-28 16:35:30 -0700
committerNed Deily <nad@acm.org>2013-05-28 16:35:30 -0700
commit97345680dcf920d6def6217213499be362ed1921 (patch)
tree5107b35f06c3790713c07f67c9ecc7e4b191c1e7 /Misc
parentdce05500a16db7563eda12d1c31e59b472150799 (diff)
downloadcpython-git-97345680dcf920d6def6217213499be362ed1921.tar.gz
Issue #18080: When building a C extension module on OS X, if the compiler
is overriden with the CC environment variable, use the new compiler as the default for linking if LDSHARED is not also overriden. This restores Distutils behavior introduced in 3.2.3 and inadvertently dropped in 3.3.0.
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 cb1a33a9a6..828e240c5b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -55,6 +55,11 @@ Library
- Issue #17269: Workaround for socket.getaddrinfo crash on MacOS X
with port None or "0" and flags AI_NUMERICSERV.
+- Issue #18080: When building a C extension module on OS X, if the compiler
+ is overriden with the CC environment variable, use the new compiler as
+ the default for linking if LDSHARED is not also overriden. This restores
+ Distutils behavior introduced in 3.2.3 and inadvertently dropped in 3.3.0.
+
IDLE
----