patches/binutils/2.18.50.0.8/100-arm-uclibcgnueabi.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Jul 31 09:08:33 2008 +0000 (2008-07-31)
changeset 752 b037a5643e04
permissions -rw-r--r--
Have the glibc build use the cross-objdump, rather than the host one.
On some distros (eg. Fedora), the native objdump can not interpret objects not for the native system, and thus fail.
This commit adds a new patch against glibc-2.7 that introduces OBJDUMP_FOR_HOST, wich, if set, overides the detected objdump.

Note: bizarely enough, glibc already has code to detect the cross-objdump, but that does not work for an unknown reason... :-(

/trunk/patches/glibc/2.7/220-objdump_for_host.patch | 13 13 0 0 +++++++++
/trunk/scripts/build/libc_glibc.sh | 37 21 16 0 +++++++++++++++------------
2 files changed, 34 insertions(+), 16 deletions(-)
     1 diff -durN binutils-2.18.50.0.8.orig/configure binutils-2.18.50.0.8/configure
     2 --- binutils-2.18.50.0.8.orig/configure	2008-07-10 17:32:56.000000000 +0200
     3 +++ binutils-2.18.50.0.8/configure	2008-07-13 23:08:13.000000000 +0200
     4 @@ -2313,7 +2313,7 @@
     5      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
     6      libgloss_dir=arm
     7      ;;
     8 -  arm*-*-linux-gnueabi)
     9 +  arm*-*-linux-gnueabi | arm*-*-linux-uclibcgnueabi)
    10      noconfigdirs="$noconfigdirs target-qthreads"
    11      case ${with_newlib} in
    12        no) noconfigdirs="$noconfigdirs target-newlib target-libgloss"
    13 diff -durN binutils-2.18.50.0.8.orig/configure.ac binutils-2.18.50.0.8/configure.ac
    14 --- binutils-2.18.50.0.8.orig/configure.ac	2008-07-10 17:32:56.000000000 +0200
    15 +++ binutils-2.18.50.0.8/configure.ac	2008-07-13 23:08:13.000000000 +0200
    16 @@ -562,7 +562,7 @@
    17      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
    18      libgloss_dir=arm
    19      ;;
    20 -  arm*-*-linux-gnueabi)
    21 +  arm*-*-linux-gnueabi | arm*-*-linux-uclibcgnueabi)
    22      noconfigdirs="$noconfigdirs target-qthreads"
    23      case ${with_newlib} in
    24        no) noconfigdirs="$noconfigdirs target-newlib target-libgloss"