diff options
Diffstat (limited to 'bfd/simple.c')
-rw-r--r-- | bfd/simple.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bfd/simple.c b/bfd/simple.c index 4524868..1b92a05 100644 --- a/bfd/simple.c +++ b/bfd/simple.c @@ -162,7 +162,10 @@ bfd_simple_get_relocated_section_contents (bfd *abfd, int storage_needed; void *saved_offsets; - if (! (sec->flags & SEC_RELOC)) + /* Don't apply relocation on executable and shared library. See + PR 4756. */ + if ((abfd->flags & (HAS_RELOC | EXEC_P | DYNAMIC)) != HAS_RELOC + || ! (sec->flags & SEC_RELOC)) { bfd_size_type amt = sec->rawsize > sec->size ? sec->rawsize : sec->size; bfd_size_type size = sec->rawsize ? sec->rawsize : sec->size; |