patches/glibc/2.2.5/glibc-2.2.5-allow-gcc-4.0-powerpc-procfs.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
permissions -rw-r--r--
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
     1 (See similar patch for glibc-2.3.3)
     2 
     3 This fix discussed here:
     4 http://gcc.gnu.org/ml/gcc/2005-01/msg00509.html
     5 
     6 Fixes
     7 
     8 In file included from ../linuxthreads_db/proc_service.h:20,
     9                  from ../linuxthreads_db/thread_dbP.h:6,
    10                  from internals.h:36,
    11                  from attr.c:23:
    12 ../sysdeps/unix/sysv/linux/powerpc/sys/procfs.h:53: error: syntax error before 'elf_vrreg_t'
    13 ../sysdeps/unix/sysv/linux/powerpc/sys/procfs.h:53: warning: type defaults to 'int' in declaration of 'elf_vrreg_t'
    14 ../sysdeps/unix/sysv/linux/powerpc/sys/procfs.h:53: warning: data definition has no type or storage class
    15 ../sysdeps/unix/sysv/linux/powerpc/sys/procfs.h:54: error: syntax error before 'elf_vrregset_t'
    16 ../sysdeps/unix/sysv/linux/powerpc/sys/procfs.h:54: warning: type defaults to 'int' in declaration of 'elf_vrregset_t'
    17 ../sysdeps/unix/sysv/linux/powerpc/sys/procfs.h:54: warning: data definition has no type or storage class
    18 make[2]: Leaving directory `/home/dank/queue/jobdir.fast2/crosstool-0.30/build/powerpc-405-linux-gnu/gcc-4.0-20050305-glibc-2.2.5/glibc-2.2.5/linuxthreads'
    19 make[2]: *** [/home/dank/queue/jobdir.fast2/crosstool-0.30/build/powerpc-405-linux-gnu/gcc-4.0-20050305-glibc-2.2.5/build-glibc/linuxthreads/attr.o] Error 1
    20 
    21 From: Martin Egholm Nielsen martin at egholm-nielsen dot dk
    22 To: crossgcc at sources dot redhat dot com
    23 Date: Thu, 24 Mar 2005 18:40:27 +0100
    24 Subject: [Patch] CT 0.29 - glibc-2.2.5-allow-gcc-4.0-powerpc-procfs
    25 
    26 Hi Dan,
    27 
    28 I had to add the following patch in order to make CT 0.29 and glibc 
    29 2.2.5 compile with gcc 4.0 (20050305) and Kernel 2.4.20...
    30 
    31 // Martin
    32 
    33 --- glibc-2.2.5/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h.old	2005-03-24 13:11:39.746062400 +0100
    34 +++ glibc-2.2.5/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h	2005-03-24 13:15:11.810996800 +0100
    35 @@ -42,15 +42,10 @@
    36  typedef double elf_fpreg_t;
    37  typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
    38  
    39 -/* gcc 3.1 and newer support __uint128_t.  */
    40 -#if !__GNUC_PREREQ(3,1)
    41 -typedef struct {
    42 -  unsigned long u[4];
    43 -} __attribute((aligned(16))) __uint128_t;
    44 -#endif
    45 -
    46  /* Altivec registers */
    47 -typedef __uint128_t elf_vrreg_t;
    48 +typedef struct {
    49 +  unsigned int u[4];
    50 +} __attribute__ ((aligned (16))) elf_vrreg_t;
    51  typedef elf_vrreg_t elf_vrregset_t[ELF_NVRREG];
    52  
    53  struct elf_siginfo
    54