diff options
Diffstat (limited to 'ld/emultempl/elf32.em')
-rw-r--r-- | ld/emultempl/elf32.em | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index d55b8f5..affd725 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -145,6 +145,10 @@ gld${EMULATION_NAME}_after_open () { struct bfd_elf_link_needed_list *needed, *l; + /* We only need to worry about this when doing a final link. */ + if (link_info.relocateable || link_info.shared) + return; + /* Get the list of files which appear in DT_NEEDED entries in dynamic objects included in the link (often there will be none). For each such file, we want to track down the corresponding |