Browse Source

stm32f7: use DEBUG_FLAGS like other targets

Consistency with other targets wherever possible.
pull/769/head
Karl Palsson 8 years ago
parent
commit
2c0e71b3c7
  1. 3
      lib/stm32/f7/Makefile

3
lib/stm32/f7/Makefile

@ -29,7 +29,7 @@ AR = $(PREFIX)-ar
# STM32F7 only supports single precision FPU
FP_FLAGS ?= -mfloat-abi=hard -mfpu=fpv5-sp-d16
TGT_CFLAGS = -Os -g \
TGT_CFLAGS = -Os \
-Wall -Wextra -Wimplicit-function-declaration \
-Wredundant-decls -Wmissing-prototypes -Wstrict-prototypes \
-Wundef -Wshadow \
@ -37,6 +37,7 @@ TGT_CFLAGS = -Os -g \
-mcpu=cortex-m7 -mthumb $(FP_FLAGS) \
-Wstrict-prototypes \
-ffunction-sections -fdata-sections -MD -DSTM32F7
TGT_CFLAGS += $(DEBUG_FLAGS)
TGT_CFLAGS += $(STANDARD_FLAGS)
ARFLAGS = rcs

Loading…
Cancel
Save