From a020ea1bc7859af0f3d4f274b34787b15102b8ca Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Thu, 17 Aug 2023 15:33:40 +0200 Subject: [PATCH] fix: arch-specific LDFLAGS discarded from test-app Regression introduced in #334 --- test-app/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-app/Makefile b/test-app/Makefile index 6ea6f01dc..15a2abd96 100644 --- a/test-app/Makefile +++ b/test-app/Makefile @@ -41,7 +41,7 @@ endif include ../arch.mk # Setup default linker flags -LDFLAGS=-T $(LSCRIPT) -Wl,-gc-sections -Wl,-Map=image.map +LDFLAGS+=-T $(LSCRIPT) -Wl,-gc-sections -Wl,-Map=image.map ifeq ($(DEBUG_UART),1) APP_OBJS+=../src/string.o