patches/binutils/2.17/110-arm-eabi-conf.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>
     1 diff -dur binutils-2.17.old/configure binutils-2.17/configure
     2 --- binutils-2.17.old/configure	2007-05-01 18:26:03.000000000 +0200
     3 +++ binutils-2.17/configure	2007-05-01 18:26:06.000000000 +0200
     4 @@ -1305,7 +1305,7 @@
     5    arm-*-elf* | strongarm-*-elf* | xscale-*-elf* | arm*-*-eabi* )
     6      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
     7      ;;
     8 -  arm*-*-linux-gnueabi)
     9 +  arm*-*-linux-gnueabi | arm*-*-linux-uclibcgnueabi)
    10      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
    11      noconfigdirs="$noconfigdirs target-libjava target-libobjc"
    12      ;;
    13 diff -dur binutils-2.17.old/configure.in binutils-2.17/configure.in
    14 --- binutils-2.17.old/configure.in	2007-05-01 18:26:03.000000000 +0200
    15 +++ binutils-2.17/configure.in	2007-05-01 18:26:06.000000000 +0200
    16 @@ -497,7 +497,7 @@
    17    arm-*-elf* | strongarm-*-elf* | xscale-*-elf* | arm*-*-eabi* )
    18      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
    19      ;;
    20 -  arm*-*-linux-gnueabi)
    21 +  arm*-*-linux-gnueabi | arm*-*-linux-uclibcgnueabi)
    22      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
    23      noconfigdirs="$noconfigdirs target-libjava target-libobjc"
    24      ;;