diff options
author | Alan Modra <amodra@bigpond.net.au> | 2005-08-04 01:19:10 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2005-08-04 01:19:10 +0000 |
commit | 12f34d675b065faa04d393e71262bb05c0d3d477 (patch) | |
tree | 07fa4f00041c04dcaf73a98d153c8752383d3501 /ld/emultempl/generic.em | |
parent | 1c812b6ea28736db13ac4720e1f10d48e5a30ddb (diff) | |
download | binutils-redhat-12f34d675b065faa04d393e71262bb05c0d3d477.tar.gz |
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/emultempl/generic.em')
-rw-r--r-- | ld/emultempl/generic.em | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/emultempl/generic.em b/ld/emultempl/generic.em index a37bdc6cb1..f7153b682e 100644 --- a/ld/emultempl/generic.em +++ b/ld/emultempl/generic.em @@ -132,7 +132,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation = ${LDEMUL_GET_SCRIPT-gld${EMULATION_NAME}_get_script}, "${EMULATION_NAME}", "${OUTPUT_FORMAT}", - ${LDEMUL_FINISH-NULL}, + ${LDEMUL_FINISH-finish_default}, ${LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS-NULL}, ${LDEMUL_OPEN_DYNAMIC_ARCHIVE-NULL}, ${LDEMUL_PLACE_ORPHAN-NULL}, |