[uClibc-cvs] uClibc/libc/sysdeps/linux/m68k crt0.S,1.12,1.13
Erik Andersen
andersen at uclibc.org
Fri May 14 10:51:08 UTC 2004
Update of /var/cvs/uClibc/libc/sysdeps/linux/m68k
In directory nail:/tmp/cvs-serv22197/libc/sysdeps/linux/m68k
Modified Files:
crt0.S
Log Message:
__data_start needs to be added to all crt0.S files that don't currently
have it. It is used by the boehm gc, amoung other things.
Index: crt0.S
===================================================================
RCS file: /var/cvs/uClibc/libc/sysdeps/linux/m68k/crt0.S,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- a/crt0.S 23 Jan 2003 17:55:22 -0000 1.12
+++ b/crt0.S 14 May 2004 10:51:04 -0000 1.13
@@ -61,3 +61,12 @@
.set atexit,empty_func
#endif
+
+/* Define a symbol for the first piece of initialized data. */
+ .data
+ .globl __data_start
+__data_start:
+ .long 0
+ .weak data_start
+ data_start = __data_start
+
More information about the uClibc-cvs
mailing list