simulator: Turn off printf format warnings
PC-based target emits warnings about printf formats, but there's nothing to be done about them, really. Turn them off for polite builds.
This commit is contained in:
parent
034d8445fd
commit
d2b1df6a93
|
|
@ -46,7 +46,7 @@ SOURCES := $(filter-out $(subst _sim.c,.c,$(SIM_SOURCES)),$(SOURCES)) $(SIM_SOUR
|
|||
|
||||
CFLAGS += -g -Wall -Wstrict-prototypes -Wno-format -Os $(DEFS) -std=gnu99
|
||||
CFLAGS += -funsigned-char -funsigned-bitfields -fshort-enums -I.. -I.
|
||||
CFLAGS += -DSIMULATOR
|
||||
CFLAGS += -DSIMULATOR -Wno-format -Wno-format-security
|
||||
|
||||
# Satisfy all current config chip targets
|
||||
CFLAGS += -D__AVR_ATmega644__ -D__AVR_ATmega644A__ -D__AVR_ATmega644P__
|
||||
|
|
|
|||
Loading…
Reference in New Issue