From 486b1c20c139c04439a6518d5ac68c0d9bd8c730 Mon Sep 17 00:00:00 2001 From: Callum Farmer Date: Fri, 28 Apr 2023 14:52:08 +0100 Subject: [PATCH] Enforce nocombreloc It is needed to avoid ELF reloc (rela) issues and to find un-merged reloc sections Signed-off-by: Callum Farmer --- Make.defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make.defaults b/Make.defaults index 53360a8..a4ecac0 100755 --- a/Make.defaults +++ b/Make.defaults @@ -197,7 +197,7 @@ endif ARFLAGS := rDv ASFLAGS += $(ARCH3264) LDFLAGS += -nostdlib --warn-common --no-undefined --fatal-warnings \ - --build-id=sha1 + --build-id=sha1 -z nocombreloc ifneq ($(ARCH),arm) export LIBGCC=$(shell $(CC) $(CFLAGS) $(ARCH3264) -print-libgcc-file-name)