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]

Community source repository for glibc add-on ports branch release/2.15/master updated. glibc-2.15-22-g88ba376


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 "Community source repository for glibc add-on ports".

The branch, release/2.15/master has been updated
       via  88ba376934bc726488857eb79a19b8ac133a1e0d (commit)
      from  7d369e108eb2923833079a2a8dac7f752be4e716 (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-ports.git;a=commitdiff;h=88ba376934bc726488857eb79a19b8ac133a1e0d

commit 88ba376934bc726488857eb79a19b8ac133a1e0d
Author: Chris Metcalf <cmetcalf@tilera.com>
Date:   Thu Jun 13 11:48:02 2013 -0400

    tile: default to little-endian in bits/endian.h
    
    This turns out to be helpful when doing a from-scratch cross-compile of
    gcc and glibc, since you can then do "make install-headers" in glibc
    even before you have a functioning tile gcc.
    
    Cherry-pick glibc commit: ad36ba2bd67398edefe31aa039090912f76bffce

diff --git a/ChangeLog.tile b/ChangeLog.tile
index 31f686b..5678aa1 100644
--- a/ChangeLog.tile
+++ b/ChangeLog.tile
@@ -1,3 +1,7 @@
+2013-06-12  Chris Metcalf  <cmetcalf@tilera.com>
+
+	* sysdeps/tile/bits/endian.h (__BYTE_ORDER): Default to little.
+
 2012-09-06  Chris Metcalf  <cmetcalf@tilera.com>
 
 	* sysdeps/unix/sysv/linux/tile/sys/procfs.h: Fix type of prfpregset_t.
diff --git a/sysdeps/tile/bits/endian.h b/sysdeps/tile/bits/endian.h
index 43d94bb..835042a 100644
--- a/sysdeps/tile/bits/endian.h
+++ b/sysdeps/tile/bits/endian.h
@@ -6,8 +6,6 @@
 
 #if defined __BIG_ENDIAN__
 # define __BYTE_ORDER __BIG_ENDIAN
-#elif defined __LITTLE_ENDIAN__
-# define __BYTE_ORDER __LITTLE_ENDIAN
 #else
-# error "Endianness not declared!!"
+# define __BYTE_ORDER __LITTLE_ENDIAN
 #endif

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

Summary of changes:
 ChangeLog.tile             |    4 ++++
 sysdeps/tile/bits/endian.h |    4 +---
 2 files changed, 5 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Community source repository for glibc add-on ports


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