patches/ltrace/0.5/120-alpha-support.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>
yann@1036
     1
diff -durN ltrace-0.4.orig/Makefile.in ltrace-0.4/Makefile.in
yann@1036
     2
--- ltrace-0.4.orig/Makefile.in	2008-10-26 15:34:21.000000000 +0100
yann@1036
     3
+++ ltrace-0.4/Makefile.in	2008-10-26 15:37:40.000000000 +0100
yann@1036
     4
@@ -5,6 +5,7 @@
yann@1036
     5
 OS		:= @HOST_OS@
yann@1036
     6
 ARCH		:= $(shell echo "@HOST_ARCH@" |sed -e s/i.86/i386/      \
yann@1036
     7
 						   -e s/sun4u/sparc64/  \
yann@1036
     8
+						   -e s/alpha.*/alpha/  \
yann@1036
     9
 						   -e s/arm.*/arm/      \
yann@1036
    10
 						   -e s/sa110/arm/      \
yann@1036
    11
 						   -e s/ppc64/ppc/      \