patches/glibc/2.1.3/glibc-2.1.3-allow-gcc3-syscall.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
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/i386/sysdep.h.diff?r1=1.40&r2=1.41&cvsroot=glibc
yann@1
     2
See also http://gcc.gnu.org/PR12928, comment 6 (which says this is a glibc bug, not a gcc bug)
yann@1
     3
yann@1
     4
Fixes
yann@1
     5
/tmp/ccdGVIRa.s: Assembler messages:
yann@1
     6
/tmp/ccdGVIRa.s:82: Error: non-constant expression in ".if" statement
yann@1
     7
/tmp/ccdGVIRa.s:83: Error: non-constant expression in ".if" statement
yann@1
     8
/tmp/ccdGVIRa.s:86: Error: non-constant expression in ".if" statement
yann@1
     9
make[2]: *** [/crosstool-0.28-pre4/build/i686-unknown-linux-gnu/gcc-3.3.3-glibc-2.1.3/build-glibc/signal/sigsuspend.o] Error 1
yann@1
    10
yann@1
    11
===================================================================
yann@1
    12
RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/i386/sysdep.h,v
yann@1
    13
retrieving revision 1.40
yann@1
    14
retrieving revision 1.41
yann@1
    15
diff -u -r1.40 -r1.41
yann@1
    16
--- libc/sysdeps/unix/sysv/linux/i386/sysdep.h	2002/10/16 08:57:25	1.40
yann@1
    17
+++ libc/sysdeps/unix/sysv/linux/i386/sysdep.h	2002/11/28 05:21:48	1.41
yann@1
    18
@@ -347,9 +347,9 @@
yann@1
    19
 #define ASMFMT_1(arg1) \
yann@1
    20
 	, "acdSD" (arg1)
yann@1
    21
 #define ASMFMT_2(arg1, arg2) \
yann@1
    22
-	, "adCD" (arg1), "c" (arg2)
yann@1
    23
+	, "adSD" (arg1), "c" (arg2)
yann@1
    24
 #define ASMFMT_3(arg1, arg2, arg3) \
yann@1
    25
-	, "aCD" (arg1), "c" (arg2), "d" (arg3)
yann@1
    26
+	, "aSD" (arg1), "c" (arg2), "d" (arg3)
yann@1
    27
 #define ASMFMT_4(arg1, arg2, arg3, arg4) \
yann@1
    28
 	, "aD" (arg1), "c" (arg2), "d" (arg3), "S" (arg4)
yann@1
    29
 #define ASMFMT_5(arg1, arg2, arg3, arg4, arg5) \