From 2267324084b30c91ea2fd7566d699b49d6934573 Mon Sep 17 00:00:00 2001 From: Jaby Date: Wed, 27 Apr 2022 21:55:33 +0200 Subject: [PATCH] Remove build ID --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 60ae2305..09addf91 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ CCFLAGS_all += $(CCFLAGS_$(BUILD_PROFILE)) #Linker flags LDFLAGS_release += -Os -LDFLAGS_all += -Wl,-Map=$(TARGET).map -nostdlib -T$(LDSCRIPT) -static -Wl,--gc-sections +LDFLAGS_all += -Wl,-Map=$(TARGET).map -nostdlib -T$(LDSCRIPT) -static -Wl,--gc-sections -Wl,--build-id=none LDFLAGS_all += $(ARCHFLAGS) -Wl,--oformat=$(FORMAT) LDFLAGS_all += $(LDFLAGS_$(BUILD_PROFILE))