patches/glibc/2.3.6/300-fix-binutils-version-check.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@1827
     1
--- glibc-2.3.6.orig/configure	2010-03-08 23:10:00.000000000 +0100
yann@1827
     2
+++ glibc-2.3.6/configure	2010-03-08 23:12:00.000000000 +0100
yann@1827
     3
@@ -3917,7 +3917,7 @@
yann@1827
     4
   ac_prog_version=`$AS -v </dev/null 2>&1 | sed -n 's/^.*GNU assembler.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
yann@1827
     5
   case $ac_prog_version in
yann@1827
     6
     '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
yann@1827
     7
-    2.1[3-9]*)
yann@1827
     8
+    2.1[3-9]*|2.[2-9]*|[3-9].*|1[0-9].*)
yann@1827
     9
        ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
yann@1827
    10
     *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
yann@1827
    11
 
yann@1827
    12
@@ -3978,7 +3978,7 @@
yann@1827
    13
   ac_prog_version=`$LD --version 2>&1 | sed -n 's/^.*GNU ld.* \([0-9][0-9]*\.[0-9.]*\).*$/\1/p'`
yann@1827
    14
   case $ac_prog_version in
yann@1827
    15
     '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
yann@1827
    16
-    2.1[3-9]*)
yann@1827
    17
+    2.1[3-9]*|2.[2-9]*|[3-9].*|1[0-9].*)
yann@1827
    18
        ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
yann@1827
    19
     *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
yann@1827
    20