From 2c0e71b3c7a8f97bc8aa04c3d5f00dfeef9fbd4d Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Mon, 24 Apr 2017 21:44:58 +0000 Subject: [PATCH] stm32f7: use DEBUG_FLAGS like other targets Consistency with other targets wherever possible. --- lib/stm32/f7/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/stm32/f7/Makefile b/lib/stm32/f7/Makefile index 0656f1cb..aa71b0f9 100644 --- a/lib/stm32/f7/Makefile +++ b/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