1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-12 09:58:36 +00:00

Turned format checking back on. It was left turned off for too long after

the gcc lossage that caused it to be turned off was fixed.

Tested with:	i386/{GENERIC,LINT,...}, alpha/GENERIC
This commit is contained in:
Bruce Evans 2002-08-25 08:05:02 +00:00
parent 4e1e73eb94
commit 64fc62d407
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102407
2 changed files with 2 additions and 14 deletions

View File

@ -6,18 +6,12 @@
# Note that the newly added -Wcast-qual is responsible for generating
# most of the remaining warnings. Warnings introduced with -Wall will
# also pop up, but are easier to fix.
#
# XXX FIXME - revert to -fformat-extensions when we've re-added it
CWARNFLAGS?= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
-Wno-format -ansi
-fformat-extensions -ansi
#
# The following flags are next up for working on:
# -W
#
# When working on removing warnings from code, the `-Werror' flag should be
# of material assistance.
#
#
# On the i386, do not align the stack to 16-byte boundaries. Otherwise GCC

View File

@ -6,18 +6,12 @@
# Note that the newly added -Wcast-qual is responsible for generating
# most of the remaining warnings. Warnings introduced with -Wall will
# also pop up, but are easier to fix.
#
# XXX FIXME - revert to -fformat-extensions when we've re-added it
CWARNFLAGS?= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
-Wno-format -ansi
-fformat-extensions -ansi
#
# The following flags are next up for working on:
# -W
#
# When working on removing warnings from code, the `-Werror' flag should be
# of material assistance.
#
#
# On the i386, do not align the stack to 16-byte boundaries. Otherwise GCC