From 54911a588784f5cc1bfc06e6e62cb543228a7393 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Fri, 8 Nov 2013 19:30:39 +0100 Subject: arch/x86: fix link with recent gcc Due to unwind tables being generated by recent versions of gcc by default, the x86 Barebox link fails with: ld: section .eh_frame loaded at [00000000000197c4,000000000001f31f] overlaps section .barebox_initcalls loaded at [00000000000197c4,0000000000019833] Passing -fno-unwind-tables -fno-asynchronous-unwind-tables avoids this problem. Signed-off-by: Thomas Petazzoni Signed-off-by: Sascha Hauer --- arch/x86/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'arch/x86') diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 518b37fe2f..a78fa22ac6 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile @@ -5,7 +5,8 @@ machine-y := i386 TEXT_BASE = $(CONFIG_TEXT_BASE) -CPPFLAGS += -march=i386 -m32 -DTEXT_BASE=$(TEXT_BASE) +CPPFLAGS += -march=i386 -m32 -DTEXT_BASE=$(TEXT_BASE) \ + -fno-unwind-tables -fno-asynchronous-unwind-tables LDFLAGS += -m elf_i386 ifndef CONFIG_MODULES -- cgit v1.2.3