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.24-330-g9a2835d


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  9a2835df5c25bc5a5669029fc92a60bfe25bf1c3 (commit)
      from  6c50bb532bb1f47084762e16fbf52af9b5a752d8 (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=9a2835df5c25bc5a5669029fc92a60bfe25bf1c3

commit 9a2835df5c25bc5a5669029fc92a60bfe25bf1c3
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Nov 4 13:32:06 2016 +0000

    Handle tilegx* machine names.
    
    This patch makes sysdeps/tile/preconfigure handle tilegx* machine
    names instead of just plain tilegx.  That matches GCC, and in
    particular allows a big-endian toolchain to use the tilegxbe-linux-gnu
    name when configuring both GCC and glibc.
    
    Tested with compilation for tilegxbe-linux-gnu, both 32-bit and 64-bit
    (building a subsequent GCC against that glibc still falls over because
    of both 32-bit and 64-bit libraries going in the lib directory, as
    noted at
    <https://sourceware.org/ml/libc-alpha/2016-11/msg00129.html>).
    
    	* sysdeps/tile/preconfigure: Accept tilegx* instead of tilegx.

diff --git a/ChangeLog b/ChangeLog
index e37049d..b6d2ba0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-11-04  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/tile/preconfigure: Accept tilegx* instead of tilegx.
+
 2016-11-03  Joseph Myers  <joseph@codesourcery.com>
 
 	* conform/Makefile ($(linknamespace-header-tests)): Also depend on
diff --git a/sysdeps/tile/preconfigure b/sysdeps/tile/preconfigure
index dfe050c..f3e5d7e 100644
--- a/sysdeps/tile/preconfigure
+++ b/sysdeps/tile/preconfigure
@@ -2,7 +2,7 @@
 case "$machine" in
     tilepro)
 	base_machine=tile machine=tile/tilepro ;;
-    tilegx)
+    tilegx*)
 	base_machine=tile
 	if $CC $CFLAGS $CPPFLAGS -E -dM -xc /dev/null | grep -q __LP64__; then
 	    machine=tile/tilegx/tilegx64

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

Summary of changes:
 ChangeLog                 |    4 ++++
 sysdeps/tile/preconfigure |    2 +-
 2 files changed, 5 insertions(+), 1 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]