patches/glibc/2.6/160-glibc-2.4-i686-assembler.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 23 17:08:09 2007 +0000 (2007-09-23)
changeset 402 197e1b49586e
permissions -rw-r--r--
Renamed all patches file names so that locales are now irrelevant to sort the files.
Removed the locale check as it is now irrelevant.
Removed the experimental binutils 2.17.50.0.xx: 2.18 is here now.
yann@402
     1
2007-02-15  Khem Raj  <kraj@xxxxxxxxxx>
yann@402
     2
yann@402
     3
       * sysdeps/unix/sysv/linux/i386/sysdep.h: Re-define __i686.
yann@402
     4
       * nptl/sysdeps/pthread/pt-initfini.c: Ditto.
yann@402
     5
yann@402
     6
yann@402
     7
yann@402
     8
Index: glibc-2.4/sysdeps/unix/sysv/linux/i386/sysdep.h
yann@402
     9
===================================================================
yann@402
    10
--- glibc-2.4/sysdeps/unix/sysv/linux/i386/sysdep.h	(revision 1469)
yann@402
    11
+++ glibc-2.4/sysdeps/unix/sysv/linux/i386/sysdep.h	(working copy)
yann@402
    12
@@ -29,6 +29,10 @@
yann@402
    13
 #include <dl-sysdep.h>
yann@402
    14
 #include <tls.h>
yann@402
    15
 
yann@402
    16
+#if defined __i686 && defined __ASSEMBLER__
yann@402
    17
+#undef __i686
yann@402
    18
+#define __i686 __i686
yann@402
    19
+#endif
yann@402
    20
 
yann@402
    21
 /* For Linux we can use the system call table in the header file
yann@402
    22
 	/usr/include/asm/unistd.h
yann@402
    23
Index: glibc-2.4/nptl/sysdeps/pthread/pt-initfini.c
yann@402
    24
===================================================================
yann@402
    25
--- glibc-2.4/nptl/sysdeps/pthread/pt-initfini.c	(revision 1469)
yann@402
    26
+++ glibc-2.4/nptl/sysdeps/pthread/pt-initfini.c	(working copy)
yann@402
    27
@@ -45,6 +45,11 @@
yann@402
    28
 /* Embed an #include to pull in the alignment and .end directives. */
yann@402
    29
 asm ("\n#include \"defs.h\"");
yann@402
    30
 
yann@402
    31
+asm ("\n#if defined __i686 && defined __ASSEMBLER__");
yann@402
    32
+asm ("\n#undef __i686");
yann@402
    33
+asm ("\n#define __i686 __i686");
yann@402
    34
+asm ("\n#endif");
yann@402
    35
+
yann@402
    36
 /* The initial common code ends here. */
yann@402
    37
 asm ("\n/*@HEADER_ENDS*/");
yann@402
    38