patches/gcc/4.4.3/300-uclibc-conf.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
parent 1611 e2516bba8fe5
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 diff -durN gcc-4.4.0.orig/contrib/regression/objs-gcc.sh gcc-4.4.0/contrib/regression/objs-gcc.sh
     2 --- gcc-4.4.0.orig/contrib/regression/objs-gcc.sh	2009-04-10 01:23:07.000000000 +0200
     3 +++ gcc-4.4.0/contrib/regression/objs-gcc.sh	2009-05-27 21:38:53.000000000 +0200
     4 @@ -106,6 +106,10 @@
     5   then
     6    make all-gdb all-dejagnu all-ld || exit 1
     7    make install-gdb install-dejagnu install-ld || exit 1
     8 +elif [ $H_REAL_TARGET = $H_REAL_HOST -a $H_REAL_TARGET = i686-pc-linux-uclibc ]
     9 + then
    10 +  make all-gdb all-dejagnu all-ld || exit 1
    11 +  make install-gdb install-dejagnu install-ld || exit 1
    12  elif [ $H_REAL_TARGET = $H_REAL_HOST ] ; then
    13    make bootstrap || exit 1
    14    make install || exit 1
    15 diff -durN gcc-4.4.0.orig/libjava/classpath/ltconfig gcc-4.4.0/libjava/classpath/ltconfig
    16 --- gcc-4.4.0.orig/libjava/classpath/ltconfig	2007-06-04 01:18:43.000000000 +0200
    17 +++ gcc-4.4.0/libjava/classpath/ltconfig	2009-05-27 21:38:53.000000000 +0200
    18 @@ -603,7 +603,7 @@
    19  
    20  # Transform linux* to *-*-linux-gnu*, to support old configure scripts.
    21  case $host_os in
    22 -linux-gnu*) ;;
    23 +linux-gnu*|linux-uclibc*) ;;
    24  linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'`
    25  esac
    26  
    27 @@ -1251,7 +1251,7 @@
    28    ;;
    29  
    30  # This must be Linux ELF.
    31 -linux-gnu*)
    32 +linux*)
    33    version_type=linux
    34    need_lib_prefix=no
    35    need_version=no