diff options
Diffstat (limited to 'libc/sysdeps/linux/powerpc')
-rw-r--r-- | libc/sysdeps/linux/powerpc/crt0.S | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/powerpc/crt0.S b/libc/sysdeps/linux/powerpc/crt0.S index 24110850d..c3b903e1e 100644 --- a/libc/sysdeps/linux/powerpc/crt0.S +++ b/libc/sysdeps/linux/powerpc/crt0.S @@ -79,12 +79,15 @@ _start: #endif .size _start,.-_start - .section ".data" - .globl __data_start +/* 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 #if defined L_gcrt1 && defined __UCLIBC_PROFILING__ # include "./gmon-start.S" #endif - |