[uClibc-cvs] uClibc/libc/sysdeps/linux/powerpc mcount.S,1.1,1.2
Erik Andersen
andersen at uclibc.org
Fri May 30 04:47:50 UTC 2003
- Previous message: [uClibc-cvs] uClibc/libc/sysdeps/linux/mips syscall.S,1.1,1.2
- Next message: [uClibc-cvs] uClibc/libpthread/linuxthreads cancel.c,1.2,1.3 oldsemaphore.c,1.1,1.2 pthread.c,1.9,1.10 weaks.c,1.2,1.3 wrapsyscall.c,1.9,1.10
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/cvs/uClibc/libc/sysdeps/linux/powerpc
In directory winder:/tmp/cvs-serv14565/libc/sysdeps/linux/powerpc
Modified Files:
mcount.S
Log Message:
In a number of places we erroneously used tests such as '#ifdef PIC' when we
should instead have been testing for '#ifdef __PIC__'. This resulted in
NON-PIC code getting mixed into the shared library. Oops!!!
-Erik
Index: mcount.S
===================================================================
RCS file: /var/cvs/uClibc/libc/sysdeps/linux/powerpc/mcount.S,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mcount.S 6 Mar 2003 15:03:33 -0000 1.1
+++ mcount.S 30 May 2003 04:47:46 -0000 1.2
@@ -69,7 +69,7 @@
stw r10,40(r1)
stw r4, 44(r1)
stw r5, 8(r1)
-#ifdef PIC
+#ifdef __PIC__
bl __mcount_internal at plt
#else
bl __mcount_internal
- Previous message: [uClibc-cvs] uClibc/libc/sysdeps/linux/mips syscall.S,1.1,1.2
- Next message: [uClibc-cvs] uClibc/libpthread/linuxthreads cancel.c,1.2,1.3 oldsemaphore.c,1.1,1.2 pthread.c,1.9,1.10 weaks.c,1.2,1.3 wrapsyscall.c,1.9,1.10
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the uClibc-cvs
mailing list