diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-01-17 14:45:55 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-01-17 14:45:55 +0000 |
commit | 3a60d155e30215a564b5fc58d1838c8543461bb9 (patch) | |
tree | 462722039161311c49cefebc48b86eebc5520b1e /libc/sysdeps | |
parent | 2bfa4ae4b8cb669fd4072c587bb52ca91af20a26 (diff) |
Add __data_start needed by boehm garbage collector, in turn needed by libgcj.
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/i386/crt0.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/i386/crt0.S b/libc/sysdeps/linux/i386/crt0.S index e7df6992b..3fd7a5e1f 100644 --- a/libc/sysdeps/linux/i386/crt0.S +++ b/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" |