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:
Phil Hord 2014-04-05 21:05:04 -04:00 committed by Markus Hitter
parent 034d8445fd
commit d2b1df6a93
1 changed files with 1 additions and 1 deletions

View File

@ -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__