diff options
Diffstat (limited to 'bfd/elf32-ppc.c')
-rw-r--r-- | bfd/elf32-ppc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index 7c5f589..242cfb7 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -3109,7 +3109,9 @@ ppc_elf_relocate_section (output_bfd, info, input_bfd, input_section, h->root.root.string, input_bfd, input_section, - rel->r_offset)) + rel->r_offset, + (!info->shared + || info->no_undefined))) return false; relocation = 0; } @@ -3139,7 +3141,8 @@ ppc_elf_relocate_section (output_bfd, info, input_bfd, input_section, h->root.root.string, input_bfd, input_section, - rel->r_offset)) + rel->r_offset, + true)) return false; continue; } |