mirror of
https://github.com/urbit/shrub.git
synced 2024-11-28 05:22:27 +03:00
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:
parent
99b5f962f2
commit
44d0079f9a
8
Makefile
8
Makefile
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user