yann@1: http://sourceware.org/ml/crossgcc/2005-05/msg00165.html yann@1: Fixes a MIPS build problem (unrelated to NPTL) yann@1: yann@1: Message-ID: <428E8B24.1000201@realitydiluted.com> yann@1: Date: Fri, 20 May 2005 20:13:08 -0500 yann@1: From: "Steven J dot Hill" yann@1: To: crossgcc at sources dot redhat dot com, toolchain at gentoo dot org, yann@1: Shay_Gal-On at pmc-sierra dot com, TheNop at gmx dot net yann@1: Subject: New NPTL patches for crosstools and MIPS NPTL patches.... yann@1: yann@1: Greetings. yann@1: yann@1: I have uploaded the latest NPTL patch for crosstool-0.34. I have also yann@1: uploaded a tarball of the patches necessary to build a MIPS NPTL yann@1: cross toolchain. To build a MIPS NPTL toolchain you will need the yann@1: released version of binutils-2.16 and the absolute latest GCC and yann@1: glibc code from the HEAD of cvs. Use the 'demo-mips-nptl.sh' script yann@1: to build the toolchain. Please report bugs or issues to the crossgcc yann@1: mailing list. Here is the link off of my FTP site: yann@1: yann@1: ftp://ftp.realitydiluted.com/crosstools/crosstool-0.34/ yann@1: yann@1: [Note: BOOTSTRAP_GCC is set by crosstool.sh when invoking make install-headers] yann@1: yann@1: diff -ur glibc-2.4.0-20050406/sysdeps/mips/mips32/Makefile glibc-2.4.0-20050406-patched/sysdeps/mips/mips32/Makefile yann@1: --- glibc-2.4.0-20050406/sysdeps/mips/mips32/Makefile 2003-03-29 02:15:28.000000000 -0600 yann@1: +++ glibc-2.4.0-20050406-patched/sysdeps/mips/mips32/Makefile 2005-04-12 21:36:51.318837655 -0500 yann@1: @@ -1,3 +1,7 @@ yann@1: +ifeq ($(filter -DBOOTSTRAP_GCC,$(CFLAGS)),) yann@1: ifeq ($(filter -mabi=32,$(CC)),) yann@1: CC += -mabi=32 yann@1: endif yann@1: +else yann@1: +CC += -D"_MIPS_SZPTR=32" yann@1: +endif yann@1: yann@1: Signed-off-by: Robert P. J. Day