]> sourceware.org Git - glibc.git/commitdiff
Update configure.ac for binutils 2.25
authorH.J. Lu <hjl.tools@gmail.com>
Tue, 26 Sep 2017 01:01:23 +0000 (18:01 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Tue, 26 Sep 2017 01:01:34 +0000 (18:01 -0700)
Commit 073e8fa7739ed453d6854b834f290c263a6cdb9f requires binutils 2.25
or later to build glibc:

* configure.ac (AS): Require binutils 2.25 or later.
(LD): Likewise.

But it only updated LD version check in configure.ac.  This patch adds
the missing AS version check.

* configure.ac (AS): Require binutils 2.25 or later.
* configure: Regenerated.

ChangeLog
configure
configure.ac

index a92b23961d1bdae9b43f78a2edc79b5711516eab..c2cebf1c91e94f8a063fb5e04793d0e78a7c0ade 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-09-25  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * configure.ac (AS): Require binutils 2.25 or later.
+       * configure: Regenerated.
+
 2017-09-25  Paul Pluzhnikov  <ppluzhnikov@google.com>
 
        [BZ #22207]
index 5cb52101077a0065464dde6f8f1d5c6b5cf233fb..067d92d2ba1cd765f6e9bb44f594fc043abb2cc2 100755 (executable)
--- a/configure
+++ b/configure
@@ -4615,7 +4615,7 @@ $as_echo "$libc_cv_prog_ld_gnu" >&6; }
 gnu_ld=$libc_cv_prog_ld_gnu
 
 
-# Accept binutils 2.22 or newer.
+# Accept binutils 2.25 or newer.
 for ac_prog in $AS
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
@@ -4667,7 +4667,7 @@ $as_echo_n "checking version of $AS... " >&6; }
   ac_prog_version=`$AS --version 2>&1 | sed -n 's/^.*GNU assembler.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
   case $ac_prog_version in
     '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
-    2.1[0-9][0-9]*|2.2[2-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*)
+    2.1[0-9][0-9]*|2.2[5-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*)
        ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
     *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
 
index 2c6308883c58746fa4923d24a9b39eb43a237fc5..d412104d8cc2dbd3205da8c96263e84eec1f3e2b 100644 (file)
@@ -1078,10 +1078,10 @@ AC_PROG_LN_S
 
 LIBC_PROG_BINUTILS
 
-# Accept binutils 2.22 or newer.
+# Accept binutils 2.25 or newer.
 AC_CHECK_PROG_VER(AS, $AS, --version,
                  [GNU assembler.* \([0-9]*\.[0-9.]*\)],
-                 [2.1[0-9][0-9]*|2.2[2-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*],
+                 [2.1[0-9][0-9]*|2.2[5-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*],
                  AS=: critic_missing="$critic_missing as")
 
 if test -n "`$LD --version | sed -n 's/^GNU \(gold\).*$/\1/p'`"; then
This page took 0.120049 seconds and 5 git commands to generate.