From c1fda50ab88d01864abc2cfac64c08e19f0b152a Mon Sep 17 00:00:00 2001 From: heck Date: Mon, 23 Sep 2024 02:31:16 +0200 Subject: [PATCH] Build: Core/Makefile - allow the user to specify his CFLAGS too --- core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index f62e14ac1..76217b800 100644 --- a/core/Makefile +++ b/core/Makefile @@ -178,7 +178,7 @@ ifeq ($(DEBUG), 1) ASFLAGS += -g -ggdb endif -CFLAGS = $(MCU) $(C_DEFS) $(C_INCLUDES) $(OPT) -Wall -Wno-missing-attributes -fasm -fdata-sections -ffunction-sections -Wno-stringop-overflow +CFLAGS += $(MCU) $(C_DEFS) $(C_INCLUDES) $(OPT) -Wall -Wno-missing-attributes -fasm -fdata-sections -ffunction-sections -Wno-stringop-overflow CFLAGS += -g -ggdb