summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-02-06 13:24:00 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-02-06 13:24:00 (GMT)
commit193ee0a0e8c543f8f731f8207df21a6cc1a08591 (patch)
treeb72d97a9ccae7f2244b1737db7d5106fad8715d0 /Misc
parent5bad70def671612835d1fdacd83f8534920f4dcd (diff)
downloadcpython-193ee0a0e8c543f8f731f8207df21a6cc1a08591.zip
cpython-193ee0a0e8c543f8f731f8207df21a6cc1a08591.tar.gz
cpython-193ee0a0e8c543f8f731f8207df21a6cc1a08591.tar.bz2
Prohibit implicit C function declarations
Issue #27659: use -Werror=implicit-function-declaration when possible (GCC and Clang, but it depends on the compiler version). Patch written by Chi Hsuan Yen.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 922f466..c640253 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -698,6 +698,10 @@ Documentation
Build
-----
+- Issue #27659: Prohibit implicit C function declarations: use
+ -Werror=implicit-function-declaration when possible (GCC and Clang, but it
+ depends on the compiler version). Patch written by Chi Hsuan Yen.
+
- Issue #29384: Remove old Be OS helper scripts.
- Issue #26851: Set Android compilation and link flags.