add overflow warning

This commit is contained in:
King Kévin 2016-06-18 22:19:17 +02:00
parent db345fedb5
commit e68335340c
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ DEFS += -DSTM32F1 -D$(BOARD)
# C flags # C flags
CFLAGS += -Os -g CFLAGS += -Os -g
CFLAGS += -std=c99 -Wpedantic -Wall -Werror -Wundef -Wextra -Wshadow -Wredundant-decls -Wmissing-prototypes -Wstrict-prototypes CFLAGS += -std=c99 -Wpedantic -Wall -Werror -Wundef -Wextra -Wshadow -Wredundant-decls -Wmissing-prototypes -Wstrict-prototypes -Wstrict-overflow=5
CFLAGS += -fno-common -ffunction-sections -fdata-sections CFLAGS += -fno-common -ffunction-sections -fdata-sections
CFLAGS += -I. -I$(INCLUDE_DIR) $(patsubst %,-I%,$(LIB)) CFLAGS += -I. -I$(INCLUDE_DIR) $(patsubst %,-I%,$(LIB))
CFLAGS += $(DEFS) CFLAGS += $(DEFS)