[PATCH] more warning flags to the build.

This commit is contained in:
greg@kroah.com 2003-10-22 00:18:49 -07:00 committed by Greg KH
parent c2ec26b928
commit 7bfd1a5643
1 changed files with 2 additions and 1 deletions

View File

@ -74,7 +74,8 @@ GCC_LIB := $(shell $(CC) -print-libgcc-file-name )
OPTIMIZATION := ${shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
then echo "-Os"; else echo "-O2" ; fi}
WARNINGS := -Wall -Wshadow -Wstrict-prototypes
# add -Wredundant-decls when libsysfs gets cleaned up
WARNINGS := -Wall -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
# Some nice architecture specific optimizations
ifeq ($(strip $(TARGET_ARCH)),arm)