diff options
author | Alan Modra <amodra@gmail.com> | 2009-09-13 07:19:18 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-09-13 07:19:18 +0000 |
commit | 97b11f4094739634d104156f5c586ba7916ef0fa (patch) | |
tree | 4736e643a4af78cef04523666cdf386dc474323a /ld/emultempl/pep.em | |
parent | b43b923a25d813161bf3596b31a7f00ef9608537 (diff) | |
download | gdb-97b11f4094739634d104156f5c586ba7916ef0fa.zip gdb-97b11f4094739634d104156f5c586ba7916ef0fa.tar.gz gdb-97b11f4094739634d104156f5c586ba7916ef0fa.tar.bz2 |
PR ld/6766
* lexsup.c (parse_args <-e>): Revert 2009-03-18 change.
* ldemul.c (after_parse_default): Add entry symbol as undef.
* emultempl/alphaelf.em (alpha_after_parse): Call after_parse_default.
* emultempl/cr16elf.em (cr16elf_after_parse): Likewise.
* emultempl/crxelf.em (crxelf_after_parse): Likewise.
* emultempl/hppaelf.em (hppaelf_after_parse): Likewise.
* emultempl/ia64elf.em (gld${EMULATION_NAME}_after_parse): Likewise.
* emultempl/pe.em (gld_${EMULATION_NAME}_after_parse): Call
after_parse_default and delete now duplicate code.
* emultempl/pep.em (gld_${EMULATION_NAME}_after_parse): Likewise.
* scripttempl/elf32cr16.sc: No need to make entry extern.
* scripttempl/elf32cr16c.sc: Likewise.
* scripttempl/elf32crx.sc: Likewise.
* scripttempl/elf32xc16xs.sc: Only provide ENTRY on final link.
Diffstat (limited to 'ld/emultempl/pep.em')
-rw-r--r-- | ld/emultempl/pep.em | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/ld/emultempl/pep.em b/ld/emultempl/pep.em index e4519c5..90af020 100644 --- a/ld/emultempl/pep.em +++ b/ld/emultempl/pep.em @@ -814,27 +814,13 @@ gld_${EMULATION_NAME}_set_symbols (void) static void gld_${EMULATION_NAME}_after_parse (void) { - /* The Windows libraries are designed for the linker to treat the - entry point as an undefined symbol. Otherwise, the .obj that - defines mainCRTStartup is brought in because it is the first - encountered in libc.lib and it has other symbols in it which will - be pulled in by the link process. To avoid this, we act as - though the user specified -u with the entry point symbol. - - This function is called after the linker script and command line - options have been read, so at this point we know the right entry - point. This function is called before the input files are - opened, so registering the symbol as undefined will make a - difference. */ - - if (! link_info.relocatable && entry_symbol.name != NULL) - ldlang_add_undef (entry_symbol.name); - /* PR ld/6744: Warn the user if they have used an ELF-only option hoping it will work on PE+. */ if (link_info.export_dynamic) einfo (_("%P: warning: --export-dynamic is not supported for PE+ " "targets, did you mean --export-all-symbols?\n")); + + after_parse_default (); } /* pep-dll.c directly accesses pep_data_import_dll, |