diff options
author | Nick Clifton <nickc@redhat.com> | 2003-12-05 11:30:18 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-12-05 11:30:18 +0000 |
commit | d3793eaa607bc918758f22d4939a2080485770e6 (patch) | |
tree | 28596cf403c68f9f8b04aef033d2ccfc6c78c091 /ld/pe-dll.c | |
parent | 362ff856039fd10e1dc996d424d03dc02d410e5f (diff) | |
download | gdb-d3793eaa607bc918758f22d4939a2080485770e6.zip gdb-d3793eaa607bc918758f22d4939a2080485770e6.tar.gz gdb-d3793eaa607bc918758f22d4939a2080485770e6.tar.bz2 |
Fixes for use of ARM_26D reloc in arm-wince toolchain.
Diffstat (limited to 'ld/pe-dll.c')
-rw-r--r-- | ld/pe-dll.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ld/pe-dll.c b/ld/pe-dll.c index ebd3711..0542ace 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -1155,7 +1155,12 @@ generate_reloc (bfd *abfd, struct bfd_link_info *info) total_relocs++; break; case BITS_AND_SHIFT (24, 2): - if (relocs[i]->howto->type == 5) + /* FIXME: 0 is ARM_26D, it is defined in bfd/coff-arm.c + Those ARM_xxx definitions should go in proper + header someday. */ + if (relocs[i]->howto->type == 0 + /* Older GNU linkers used 5 instead of 0 for this reloc. */ + || relocs[i]->howto->type == 5) /* This is an ARM_26D reloc, which is an ARM_26 reloc that has already been fully processed during a previous link stage, so ignore it here. */ |