Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/gnu/dist/toolchain/ld/emulparams Set ENTRY=__start to be con...



details:   https://anonhg.NetBSD.org/src/rev/f7bc69ecff2e
branches:  trunk
changeset: 555614:f7bc69ecff2e
user:      uwe <uwe%NetBSD.org@localhost>
date:      Sun Nov 23 13:54:11 2003 +0000

description:
Set ENTRY=__start to be consistent with other ELF ports.  The produced
binaries are the same, as we provide both _start and __start symbols
for the entry point in crt0.

PR#22073 by Izumi Tsutsui.
Ok by Matthew Green <mrg@netbsd>.

diffstat:

 gnu/dist/toolchain/ld/emulparams/shelf_nbsd.sh |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r db74f1ef21c9 -r f7bc69ecff2e gnu/dist/toolchain/ld/emulparams/shelf_nbsd.sh
--- a/gnu/dist/toolchain/ld/emulparams/shelf_nbsd.sh    Sun Nov 23 13:34:07 2003 +0000
+++ b/gnu/dist/toolchain/ld/emulparams/shelf_nbsd.sh    Sun Nov 23 13:54:11 2003 +0000
@@ -9,7 +9,7 @@
 
 DATA_START_SYMBOLS='__data_start = . ;';
 
-ENTRY=_start
+ENTRY=__start
 
 unset EMBEDDED
 unset OTHER_SECTIONS



Home | Main Index | Thread Index | Old Index