From f1ba2c9d88078df8758ee9072b02d48e70c0b305 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 18 Jun 2020 10:59:29 +1000 Subject: [PATCH] qemu-arm/Makefile: Add CFLAGS_EXTRA to CFLAGS. Signed-off-by: Damien George --- ports/qemu-arm/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/qemu-arm/Makefile b/ports/qemu-arm/Makefile index e7b6523f88..aebc5afaeb 100644 --- a/ports/qemu-arm/Makefile +++ b/ports/qemu-arm/Makefile @@ -42,6 +42,7 @@ INC += -I$(BUILD) CFLAGS += $(INC) -Wall -Wpointer-arith -Wdouble-promotion -Wfloat-conversion -Werror -std=gnu99 $(COPT) \ -ffunction-sections -fdata-sections +CFLAGS += $(CFLAGS_EXTRA) # Debugging/Optimization ifeq ($(DEBUG), 1)