From: Greg Ungerer Date: Mon, 3 Jul 2006 05:50:10 +0000 (+0000) Subject: * elf2flt.c (output_relocs) [TARGET_arm]: Add X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=0cb0807f5c2b2f8dced83047ed77556e1fab2d4a;p=elf2flt.git * elf2flt.c (output_relocs) [TARGET_arm]: Add R_ARM_REL32, which does not need a relocation. Patch submitted by Shaun Jackman --- diff --git a/elf2flt.c b/elf2flt.c index 09bf896..2b4cb83 100644 --- a/elf2flt.c +++ b/elf2flt.c @@ -702,6 +702,7 @@ dump_symbols(symbols, number_of_symbols); case R_ARM_ABS32: relocation_needed = 1; break; + case R_ARM_REL32: case R_ARM_THM_PC22: relocation_needed = 0; break;