From c85f52d5d553115aa360ece14ee5e7d33acf3939 Mon Sep 17 00:00:00 2001 From: Eric Wild Date: Thu, 28 Oct 2021 18:32:42 +0200 Subject: [PATCH] firmware: drop cref printing No one reads this, no one wants to know this. Change-Id: Ie2281e207164f82d8ee29bd596a5593c22aaf198 --- firmware/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/Makefile b/firmware/Makefile index 810c7f3e..f6e83167 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -205,7 +205,7 @@ CFLAGS += -fno-stack-protector endif ASFLAGS = -mcpu=cortex-m3 -mthumb -Wall -g $(OPTIMIZATION) $(INCLUDES) -D$(CHIP) -D__ASSEMBLY__ -LDFLAGS = -mcpu=cortex-m3 -mthumb -Wl,--cref -Wl,--check-sections -Wl,--gc-sections -Wl,--entry=ResetException -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--no-undefined $(LIB) +LDFLAGS = -mcpu=cortex-m3 -mthumb -Wl,--check-sections -Wl,--gc-sections -Wl,--entry=ResetException -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--no-undefined $(LIB) ifeq ("$(USE_CLANG)","0") LDFLAGS += -Wl,--warn-section-align -Wl,--print-memory-usage endif