diff options
author | Joseph Myers <joseph@codesourcery.com> | 2015-08-20 20:50:05 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2015-08-20 20:50:05 +0000 |
commit | 48bb14bdbbeb09cb3cd950d7346688958f1bce1a (patch) | |
tree | 6c4e78745f538d2708e1b0a094ae747d1d4a9ff5 | |
parent | 3a2a9a906683323202eb61dd3c80a503b682d249 (diff) | |
download | glibc-48bb14bdbbeb09cb3cd950d7346688958f1bce1a.tar glibc-48bb14bdbbeb09cb3cd950d7346688958f1bce1a.tar.gz glibc-48bb14bdbbeb09cb3cd950d7346688958f1bce1a.tar.bz2 glibc-48bb14bdbbeb09cb3cd950d7346688958f1bce1a.zip |
Don't use -Wno-error=undef.
This patch removes the use of -Wno-error=undef, so that -Wundef
warnings become errors.
Tested for x86_64, x86, mips64 (all three ABIs) and arm.
* Makeconfig [$(enable-werror) = yes] (+gccwarn): Do not add
-Wno-error=undef.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makeconfig | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2015-08-20 Joseph Myers <joseph@codesourcery.com> + + * Makeconfig [$(enable-werror) = yes] (+gccwarn): Do not add + -Wno-error=undef. + 2015-08-20 H.J. Lu <hongjiu.lu@intel.com> * i386/i686/multiarch/strcasestr-c.c: Removed. diff --git a/Makeconfig b/Makeconfig index f136b88da1..bbe83ec16a 100644 --- a/Makeconfig +++ b/Makeconfig @@ -750,7 +750,7 @@ else endif +gccwarn += -Wundef ifeq ($(enable-werror),yes) -+gccwarn += -Werror -Wno-error=undef ++gccwarn += -Werror endif +gccwarn-c = -Wstrict-prototypes |