Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Apr 2008 18:25:04 GMT
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 140541 for review
Message-ID:  <200804241825.m3OIP4jR001065@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=140541

Change 140541 by gonzo@gonzo_jeeves on 2008/04/24 18:25:02

	o ld script states that entry point is __start and not _start. Without
	    it entry point defaults to the start of .text section where __main
	    is located. That's no good.

Affected files ...

.. //depot/projects/mips2-jnpr/src/lib/csu/mips/crt1.c#3 edit

Differences ...

==== //depot/projects/mips2-jnpr/src/lib/csu/mips/crt1.c#3 (text+ko) ====

@@ -71,7 +71,7 @@
 
 /* The entry function. */
 void
-_start(char **ap,
+__start(char **ap,
 	void (*cleanup)(void),			/* from shared loader */
 	struct Struct_Obj_Entry *obj,		/* from shared loader */
 	struct ps_strings *ps_strings)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200804241825.m3OIP4jR001065>