Introduce some more warnings

Actually this only causes a few missing field initializer warnings to
show up in the jet code. I disabled sign-compare and unused-parameter
outright because they were too noisy.
This commit is contained in:
Steven Dee 2014-12-11 19:02:53 -05:00
parent 99b5f962f2
commit 44d0079f9a

View File

@ -80,7 +80,13 @@ CFLAGS= $(COSFLAGS) -O3 -msse3 -ffast-math \
$(DEFINES) \
$(MDEFINES)
CWFLAGS=-Wall
# TODO remove -Wno-*
CWFLAGS=-Wall \
-Wextra \
-Wno-sign-compare \
-Wno-unused-parameter \
-Werror \
-Wno-error=missing-field-initializers
ifdef NO_SILENT_RULES
%.o: %.c $(CORE)