diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-06-26 22:29:06 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-06-26 22:29:06 (GMT) |
commit | 620c6c760dd8e596b0c630fed736f2a958b09d4a (patch) | |
tree | 6e51df663779b49646a4816cfb9dd8d675084b8e /Misc | |
parent | 1341f57c9f5502ad3cb7247f53d1bca784f296e4 (diff) | |
download | cpython-620c6c760dd8e596b0c630fed736f2a958b09d4a.zip cpython-620c6c760dd8e596b0c630fed736f2a958b09d4a.tar.gz cpython-620c6c760dd8e596b0c630fed736f2a958b09d4a.tar.bz2 |
Having CFLAGS come before OPT prevents silencing certain classes of warnings
from the fact that OPT contains -Wall be default. This is annoying when
compilers like clang have thorough debugging information about things that
Python does extensively (e.g. -Wunused-value for unused return values caused by
a macro use).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1461,6 +1461,8 @@ Extension Modules Build ----- +- Have CFLAGS come after OPT to allow for overriding warnings flags. + - Issue #8854: Fix finding Visual Studio 2008 on Windows x64. - Issue #1759169, #8864: Drop _XOPEN_SOURCE on Solaris, define it for |