Browse Source

Add __data_start needed by boehm garbage collector, in turn needed by libgcj.

Manuel Novoa III 21 years ago
parent
commit
3a60d155e3
1 changed files with 4 additions and 0 deletions
  1. 4 0
      libc/sysdeps/linux/i386/crt0.S

+ 4 - 0
libc/sysdeps/linux/i386/crt0.S

@@ -120,6 +120,10 @@ _start:
 	hlt
 .size _start,.-_start
 
+	.section ".data"
+	.globl  __data_start
+__data_start:
+	.long 0
 
 #if defined L_gcrt1 && defined __UCLIBC_PROFILING__
 # include "./gmon-start.S"