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.18-418-gc8b82b8


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  c8b82b81ded53ae06987727e807d19170bee4204 (commit)
      from  71655786bcb9ccc4fe2b062520a2538a8f802e74 (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=c8b82b81ded53ae06987727e807d19170bee4204

commit c8b82b81ded53ae06987727e807d19170bee4204
Author: Paul Pluzhnikov <ppluzhnikov@google.com>
Date:   Wed Nov 20 10:25:57 2013 -0800

    Fix failure in tst-cleanup2 and tst-cleanupx2 with gcc-4.9
    gcc (GCC) 4.9.0 20131114 (experimental)
    
    2013-11-20  Paul Pluzhnikov  <ppluzhnikov@google.com
    
    	* Makefile (tst-cleanup2, tst-cleanupx2): Add -fno-builtin

diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index 9d04a7b..440a844 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -1,3 +1,7 @@
+2013-11-20  Paul Pluzhnikov  <ppluzhnikov@google.com
+
+	* Makefile (tst-cleanup2, tst-cleanupx2): Add -fno-builtin
+
 2013-10-30  Mike Frysinger  <vapier@gentoo.org>
 
 	* sysdeps/pthread/configure.in: Moved to ...
diff --git a/nptl/Makefile b/nptl/Makefile
index cd601e5..82f2d0a 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -278,6 +278,10 @@ gen-as-const-headers = pthread-errnos.sym
 
 LDFLAGS-pthread.so = -Wl,--enable-new-dtags,-z,nodelete,-z,initfirst
 
+# GCC-4.9 compiles 'sprintf(NULL, ...)' into UD2 on x86_64 without -fno-builtin
+CFLAGS-tst-cleanup2.c = -fno-builtin
+CFLAGS-tst-cleanupx2.c = -fno-builtin
+
 include ../Makeconfig
 
 ifeq ($(have-forced-unwind),yes)

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

Summary of changes:
 nptl/ChangeLog |    4 ++++
 nptl/Makefile  |    4 ++++
 2 files changed, 8 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]