patches/glibc/linuxthreads-2.2.5/glibc-2.2.5-alpha-self-clobber.patch
changeset 1 eeea35fbf182
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/patches/glibc/linuxthreads-2.2.5/glibc-2.2.5-alpha-self-clobber.patch	Sat Feb 24 11:00:05 2007 +0000
     1.3 @@ -0,0 +1,25 @@
     1.4 +wget http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/linuxthreads/sysdeps/alpha/pt-machine.h.diff?r1=1.9&r2=1.10&cvsroot=glibc
     1.5 +
     1.6 +Should fix error
     1.7 +
     1.8 +internals.h: In function `pthread_setcancelstate':
     1.9 +internals.h:381: error: asm-specifier for variable `__self' conflicts with asm clobber list
    1.10 +make[2]: *** [/home/dank/crosstool-0.28/build/alpha-unknown-linux-gnu/gcc-3.4.1-glibc-2.2.5/build-glibc/linuxthreads/cancel.o] Error 1
    1.11 +make[2]: Leaving directory `/home/dank/crosstool-0.28/build/alpha-unknown-linux-gnu/gcc-3.4.1-glibc-2.2.5/glibc-2.2.5/linuxthreads'
    1.12 +
    1.13 +===================================================================
    1.14 +RCS file: /cvs/glibc/libc/linuxthreads/sysdeps/alpha/pt-machine.h,v
    1.15 +retrieving revision 1.9
    1.16 +retrieving revision 1.10
    1.17 +diff -u -r1.9 -r1.10
    1.18 +--- libc/linuxthreads/sysdeps/alpha/pt-machine.h	2002/04/06 04:05:13	1.9
    1.19 ++++ libc/linuxthreads/sysdeps/alpha/pt-machine.h	2002/05/20 20:09:34	1.10
    1.20 +@@ -76,7 +76,7 @@
    1.21 + #define THREAD_SELF \
    1.22 + ({									      \
    1.23 +   register pthread_descr __self __asm__("$0");				      \
    1.24 +-  __asm__ ("call_pal %1" : "=r"(__self) : "i"(PAL_rduniq) : "$0");	      \
    1.25 ++  __asm__ ("call_pal %1" : "=r"(__self) : "i"(PAL_rduniq));		      \
    1.26 +   __self;								      \
    1.27 + })
    1.28 +