diff options
author | Ned Deily <nad@acm.org> | 2013-05-28 23:35:30 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-05-28 23:35:30 (GMT) |
commit | 97345680dcf920d6def6217213499be362ed1921 (patch) | |
tree | 5107b35f06c3790713c07f67c9ecc7e4b191c1e7 /Misc | |
parent | dce05500a16db7563eda12d1c31e59b472150799 (diff) | |
download | cpython-97345680dcf920d6def6217213499be362ed1921.zip cpython-97345680dcf920d6def6217213499be362ed1921.tar.gz cpython-97345680dcf920d6def6217213499be362ed1921.tar.bz2 |
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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 ---- |