From 813349ca63e3987cb6a2567cbfbd8572ae78554f Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Thu, 15 Dec 2005 07:50:05 +0000 Subject: Fix static apps on linux 2.6. Linux clobbers r7 in 2.6, so use r3 instead to pass _dl_fini. --- libc/sysdeps/linux/powerpc/crt1.S | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/sysdeps/linux/powerpc/crt1.S') diff --git a/libc/sysdeps/linux/powerpc/crt1.S b/libc/sysdeps/linux/powerpc/crt1.S index c042462e9..47419bb52 100644 --- a/libc/sysdeps/linux/powerpc/crt1.S +++ b/libc/sysdeps/linux/powerpc/crt1.S @@ -60,7 +60,8 @@ _start: lwz r4,0(r9) /* find argv one word offset from the stack pointer */ addi r5,r9,4 - mr r8,r7 /* Pass _dl_fini from ldso or NULL if statically linked */ + mr r8,r3 /* Pass _dl_fini from ldso or NULL if statically linked + Note: using r3 instead of r7, since linux 2.6 clobbers r7 */ /* Ok, now run uClibc's main() -- shouldn't return */ #ifdef __PIC__ lwz r6,_init@got(r31) -- cgit v1.2.3