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>
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