From 00811a49bf8801fb22445a7f3ed331b12d6fec1d Mon Sep 17 00:00:00 2001 From: Greg Ungerer Date: Thu, 21 May 2009 07:02:06 +0000 Subject: [PATCH] Newer gcc compilers generate some ARM relocation types that we should deal with in elf2flt. Patch submitted by Erwin Authried --- elf2flt.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/elf2flt.c b/elf2flt.c index df48fbf..49ceb30 100644 --- a/elf2flt.c +++ b/elf2flt.c @@ -716,6 +716,10 @@ dump_symbols(symbols, number_of_symbols); case R_ARM_REL32: case R_ARM_THM_PC11: case R_ARM_THM_PC22: + case R_ARM_PC24: + case R_ARM_PLT32: + case R_ARM_GOTPC: + case R_ARM_GOT32: relocation_needed = 0; break; default: -- 2.39.5