patches/binutils/2.20/300-mips64-defaultemul.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 12 23:51:25 2010 +0200 (2010-09-12)
changeset 2123 ff2181adbd28
permissions -rw-r--r--
cc/gcc: disable complibs if not selected

Force gcc to not link with some companion libraries when
there are not needed (because selected-out).

There is no option to tell gcc *not* to build the Graphite and/or
LTO stuff. They *will* be built if gcc finds the suitable companion
libraries. If we do not provide them, but the host has them, then
gcc *will* find them, and link with them.

Consider the following:
- host has suitable PPL and CLooG (eg. Debian Squeeze)
- user wants to build gcc>=4.4
- user de-selects GRAPHITE
- gcc will find the hosts PPL and CLooG, and will use them
- the user moves the toolchain to an older host that does
not have them (eg. Debian Lenny)
- the toolchain fails, when it was properly setup not to

So, explicitly tell gcc *not* to use unneeded companion libs.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
mlistz@1816
     1
--- binutils-2.20/ld/configure.tgt.orig	2010-02-20 04:05:31.000000000 -0500
mlistz@1816
     2
+++ binutils-2.20/ld/configure.tgt	2010-02-20 04:08:11.000000000 -0500
mlistz@1816
     3
@@ -400,11 +400,11 @@
mlistz@1816
     4
 mips*-*-vxworks*)	targ_emul=elf32ebmipvxworks
mlistz@1816
     5
 		        targ_extra_emuls="elf32elmipvxworks" ;;
mlistz@1816
     6
 mips*-*-windiss)	targ_emul=elf32mipswindiss ;;
mlistz@1816
     7
-mips64*el-*-linux-*)	targ_emul=elf32ltsmipn32
mlistz@1816
     8
-			targ_extra_emuls="elf32btsmipn32 elf32ltsmip elf32btsmip elf64ltsmip elf64btsmip"
mlistz@1816
     9
+mips64*el-*-linux-*)	targ_emul=elf64ltsmip
mlistz@1816
    10
+			targ_extra_emuls="elf32ltsmipn32 elf32btsmipn32 elf32ltsmip elf32btsmip elf64btsmip"
mlistz@1816
    11
 			targ_extra_libpath=$targ_extra_emuls ;;
mlistz@1816
    12
-mips64*-*-linux-*)	targ_emul=elf32btsmipn32
mlistz@1816
    13
-			targ_extra_emuls="elf32ltsmipn32 elf32btsmip elf32ltsmip elf64btsmip elf64ltsmip"
mlistz@1816
    14
+mips64*-*-linux-*)	targ_emul=elf64btsmip
mlistz@1816
    15
+			targ_extra_emuls="elf32btsmipn32 elf32ltsmipn32 elf32btsmip elf32ltsmip elf64ltsmip"
mlistz@1816
    16
 			targ_extra_libpath=$targ_extra_emuls ;;
mlistz@1816
    17
 mips*el-*-linux-*)	targ_emul=elf32ltsmip
mlistz@1816
    18
 			targ_extra_emuls="elf32btsmip elf32ltsmipn32 elf64ltsmip elf32btsmipn32 elf64btsmip"