patches/glibc/2.3.6/glibc-2.3.6-allow-gcc-4.0-arm.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... :-(
yann@1
     1
Fixes
yann@1
     2
In file included from dynamic-link.h:22,
yann@1
     3
                 from dl-reloc.c:265:
yann@1
     4
../sysdeps/arm/dl-machine.h: In function '_dl_relocate_object':
yann@1
     5
../sysdeps/arm/dl-machine.h:371: error: invalid storage class for function 'fix_bad_pc24'
yann@1
     6
make[2]: Leaving directory `/home/dank/queue/jobdir.k8/crosstool-dev/build/arm-unknown-linux-gnu/gcc-4.0-20050305-glibc-2.3.6/glibc-2.3.6/elf'
yann@1
     7
yann@1
     8
when building glibc-2.3.6 with gcc-4.0
yann@1
     9
yann@1
    10
Like
yann@1
    11
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/arm/dl-machine.h.diff?r1=1.51&r2=1.52&cvsroot=glibc
yann@1
    12
but fixes fix_bad_pc24.
yann@1
    13
yann@1
    14
yann@1
    15
--- glibc-2.3.6-orig/sysdeps/arm/dl-machine.h	Sun Mar 20 17:54:37 2005
yann@1
    16
+++ glibc-2.3.6/sysdeps/arm/dl-machine.h	Sun Mar 20 17:57:32 2005
yann@1
    17
@@ -357,7 +357,14 @@
yann@1
    18
 #ifdef RESOLVE
yann@1
    19
 
yann@1
    20
 /* Deal with an out-of-range PC24 reloc.  */
yann@1
    21
-static Elf32_Addr
yann@1
    22
+#if __GNUC__ >= 4
yann@1
    23
+  auto inline Elf32_Addr
yann@1
    24
+#else
yann@1
    25
+  static inline Elf32_Addr
yann@1
    26
+#endif
yann@1
    27
+#if __GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)
yann@1
    28
+  __attribute ((always_inline))
yann@1
    29
+#endif
yann@1
    30
 fix_bad_pc24 (Elf32_Addr *const reloc_addr, Elf32_Addr value)
yann@1
    31
 {
yann@1
    32
   static void *fix_page;
yann@1
    33
yann@1
    34
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
yann@1
    35
with a little editing by dank@kegel.com