patches/gcc/2.95.3/110-backport-config.gcc-1.4.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jul 28 21:59:40 2008 +0000 (2008-07-28)
changeset 748 61cd4eb6034d
permissions -rw-r--r--
New patches to make glibc 2.6 and 2.6.1 build for Alpha.
Forwarded by Ioannis E. VENETIS.

/trunk/patches/glibc/2.6.1/200-alpha-ptr_mangle.patch | 103 103 0 0 ++++++++
/trunk/patches/glibc/2.6.1/190-alpha-atfcts.patch | 11 11 0 0 +
/trunk/patches/glibc/2.6.1/180-gcc-4.3-sysinclude-path.patch | 50 50 0 0 ++++
/trunk/patches/glibc/2.6.1/210-lll_lock_t.patch | 237 237 0 0 ++++++++++++++++++
/trunk/patches/glibc/2.6/200-alpha-ptr_mangle.patch | 103 103 0 0 ++++++++
/trunk/patches/glibc/2.6/190-alpha-atfcts.patch | 11 11 0 0 +
/trunk/patches/glibc/2.6/180-gcc-4.3-sysinclude-path.patch | 50 50 0 0 ++++
/trunk/patches/glibc/2.6/210-lll_lock_t.patch | 237 237 0 0 ++++++++++++++++++
/trunk/patches/glibc/ports-2.6.1/120-lll_lock_t.patch | 156 156 0 0 ++++++++++++
9 files changed, 958 insertions(+)
yann@402
     1
# Taken from http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config.gcc.diff?r1=1.3&r2=1.4
yann@402
     2
# Should fix error
yann@402
     3
#   Configuration powerpc-host_apple-darwin7.3.0 not supported
yann@402
     4
# when configuring gcc-2.95 on Mac OS X for i686 target
yann@402
     5
# Also create xm-darwin.h, seems to be required, else we get the error
yann@402
     6
#   In file included from .../gcc-2.95.3/gcc/gencheck.c:21:
yann@402
     7
#   hconfig.h:11:30: rs6000/xm-darwin.h: No such file or directory
yann@402
     8
#   make[1]: *** [gencheck.o] Error 1
yann@402
     9
yann@402
    10
yann@402
    11
--- gcc-2.95.3/gcc/configure.old	2004-03-24 12:17:44.000000000 -0800
yann@402
    12
+++ gcc-2.95.3/gcc/configure	2004-03-24 17:14:38.000000000 -0800
yann@402
    13
@@ -5079,6 +5079,10 @@
yann@402
    14
 		tmake_file=rs6000/t-beos
yann@402
    15
 		xmake_file=rs6000/x-beos
yann@402
    16
 		;;
yann@402
    17
+	powerpc-*-darwin*)
yann@402
    18
+		xm_file="rs6000/xm-rs6000.h rs6000/xm-darwin.h"
yann@402
    19
+		xmake_file=rs6000/x-darwin
yann@402
    20
+		;;
yann@402
    21
 	powerpc-*-sysv* | powerpc-*-elf*)
yann@402
    22
 		tm_file=rs6000/sysv4.h
yann@402
    23
 		xm_file="xm-siglist.h rs6000/xm-sysv4.h"
yann@402
    24
--- /dev/null	2003-01-30 02:24:37.000000000 -0800
yann@402
    25
+++ gcc-3.0.4/gcc/config/rs6000/xm-darwin.h	2000-11-20 19:02:09.000000000 -0800
yann@402
    26
@@ -0,0 +1,9 @@
yann@402
    27
+/* Undo the USG definition in xm-rs6000.h, Darwin is a BSD flavor.  */
yann@402
    28
+
yann@402
    29
+#undef USG
yann@402
    30
+
yann@402
    31
+/* Override the usual setting, since Apple's GCC has lame bugs and
yann@402
    32
+   can't handle the initializers.  Someday the bugs will be fixed and
yann@402
    33
+   we can get rid of this silliness.  */
yann@402
    34
+
yann@402
    35
+#define HAVE_DESIGNATED_INITIALIZERS 0