patches/glibc/2.3.6/300-fix-binutils-version-check.patch
author Remy Bohmer <linux@bohmer.net>
Thu May 27 23:18:19 2010 +0200 (2010-05-27)
changeset 2060 51e4597b07fc
permissions -rw-r--r--
scripts: add option to strip all toolchain executables

To reduce filesizes of the toolchain and even improve build times
of projects to be build with this toolchain it is usefull to strip
the delivered toolchain executables. Since it is not likely that we
will debug the toolchain executables itself we do not need the
debug information inside the executables itself.

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