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


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  6d1774146f8e512de0cf3b05cca7c0d9205b4e5b (commit)
      from  860aacdad2d52af48bc549650726b29510feaba6 (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=6d1774146f8e512de0cf3b05cca7c0d9205b4e5b

commit 6d1774146f8e512de0cf3b05cca7c0d9205b4e5b
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Fri Nov 4 18:10:42 2016 -0200

    Fix sparc build due missing __WORDSIZE_TIME64_COMPAT32 definition
    
    This patch adds the missing Linux sparc definitions from d060cd0.
    Both value are copied from default sparc value [1] and with this
    fix now both sparc 32 and 64 bits builds on Linux.
    
    	* sysdeps/unix/sysv/linux/sparc/bits/wordsize.h
    	(__WORDSIZE_TIME64_COMPAT32): Define for both 32 and  64 bits.
    
    [1] sysdeps/sparc/sparc{32,64}/bits/wordsize.h

diff --git a/ChangeLog b/ChangeLog
index 3cf5347..27ebce7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-11-04  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+	* sysdeps/unix/sysv/linux/sparc/bits/wordsize.h
+	(__WORDSIZE_TIME64_COMPAT32): Define for both 32 and  64 bits.
+
 2016-11-04  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #20768]
diff --git a/sysdeps/unix/sysv/linux/sparc/bits/wordsize.h b/sysdeps/unix/sysv/linux/sparc/bits/wordsize.h
index 76d6579..121b4fe 100644
--- a/sysdeps/unix/sysv/linux/sparc/bits/wordsize.h
+++ b/sysdeps/unix/sysv/linux/sparc/bits/wordsize.h
@@ -2,10 +2,12 @@
 
 #if defined __arch64__ || defined __sparcv9
 # define __WORDSIZE	64
+# define __WORDSIZE_TIME64_COMPAT32	1
 #else
 # define __WORDSIZE	32
 # define __WORDSIZE32_SIZE_ULONG	0
 # define __WORDSIZE32_PTRDIFF_LONG	0
+# define __WORDSIZE_TIME64_COMPAT32	0
 #endif
 
 #if !defined __NO_LONG_DOUBLE_MATH && !defined __LONG_DOUBLE_MATH_OPTIONAL

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

Summary of changes:
 ChangeLog                                     |    5 +++++
 sysdeps/unix/sysv/linux/sparc/bits/wordsize.h |    2 ++
 2 files changed, 7 insertions(+), 0 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]