diff options
author | Alan Modra <amodra@gmail.com> | 2005-08-04 01:19:10 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-08-04 01:19:10 +0000 |
commit | 1e035701d67ed8a8bc72ec9e393f2d984090a60c (patch) | |
tree | 6fcad3c6a7a6230a26ad9be058d62593e52434a1 /ld/ldemul.c | |
parent | 90b263f311be83eb53821908bbec2a18e2b1ce69 (diff) | |
download | binutils-1e035701d67ed8a8bc72ec9e393f2d984090a60c.zip binutils-1e035701d67ed8a8bc72ec9e393f2d984090a60c.tar.gz binutils-1e035701d67ed8a8bc72ec9e393f2d984090a60c.tar.bz2 |
bfd/
* elflink.c (fix_syms, _bfd_elf_fix_excluded_sec_syms): Move to..
* linker.c (fix_syms, _bfd_fix_excluded_sec_syms): ..here.
* bfd-in.h (_bfd_fix_excluded_sec_syms): Rename.
* bfd-in2.h: Regenerate.
ld/
* ldemul.c (ldemul_finish): Call ld_emulation->finish unconditionally.
(finish_default): New function.
* ldemul.h (finish_default): Declare.
* emultempl/aix.em (gld*_before_allocation): Call
before_allocation_default rather than strip_excluded_output_sections.
(ld_*_emulation): Init finish field to finish_default.
* emultempl/armcoff.em: Likewise.
* emultempl/beos.em: Likewise.
* emultempl/elf32.em: Likewise.
* emultempl/generic.em: Likewise.
* emultempl/gld960.em: Likewise.
* emultempl/gld960c.em: Likewise.
* emultempl/hppaelf.em: Likewise.
* emultempl/linux.em: Likewise.
* emultempl/lnk960.em: Likewise.
* emultempl/m68kcoff.em: Likewise.
* emultempl/mmo.em: Likewise.
* emultempl/pe.em: Likewise.
* emultempl/ppc64elf.em: Likewise.
* emultempl/sunos.em: Likewise.
* emultempl/ticoff.em: Likewise.
* emultempl/vanilla.em: Likewise.
Diffstat (limited to 'ld/ldemul.c')
-rw-r--r-- | ld/ldemul.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ld/ldemul.c b/ld/ldemul.c index fbe3e1d..5b4796a 100644 --- a/ld/ldemul.c +++ b/ld/ldemul.c @@ -94,8 +94,7 @@ ldemul_set_output_arch (void) void ldemul_finish (void) { - if (ld_emulation->finish) - ld_emulation->finish (); + ld_emulation->finish (); } void @@ -228,6 +227,13 @@ do_assignments_default (void) } void +finish_default (void) +{ + if (!link_info.relocatable) + _bfd_fix_excluded_sec_syms (output_bfd, &link_info); +} + +void set_output_arch_default (void) { /* Set the output architecture and machine if possible. */ |