This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.26-395-gb439616


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  b4396163aa8666f970aaf43eaca25f3a92b18c1b (commit)
      from  8f8349870fbcd822b0bdbd3200bc0245f812dae4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=b4396163aa8666f970aaf43eaca25f3a92b18c1b

commit b4396163aa8666f970aaf43eaca25f3a92b18c1b
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Sep 25 18:01:23 2017 -0700

    Update configure.ac for binutils 2.25
    
    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.

diff --git a/ChangeLog b/ChangeLog
index a92b239..c2cebf1 100644
--- 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]
diff --git a/configure b/configure
index 5cb5210..067d92d 100755
--- 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;;
 
diff --git a/configure.ac b/configure.ac
index 2c63088..d412104 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog    |    5 +++++
 configure    |    4 ++--
 configure.ac |    4 ++--
 3 files changed, 9 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]