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.9000-1182-gd4d5b2d


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  d4d5b2ddf348bd1e310a5d73da58bae9ec09a41e (commit)
      from  61a3a8c6ce4e6d42c900ce83cc69256e0b0589a3 (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=d4d5b2ddf348bd1e310a5d73da58bae9ec09a41e

commit d4d5b2ddf348bd1e310a5d73da58bae9ec09a41e
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sat Jan 27 19:53:44 2018 +0100

    hurd: fix gcc build in build-many-glibcs.py
    
    gcc's libcilkrts has never actually supported GNU/Hurd, and doesn't
    automatically disable it, and the support was actually removed in gcc trunk,
    so that will never actually be fixed there.
    
    	* scripts/build-many-glibcs.py [os == gnu] (build_gcc): Pass
    	--disable-libcilkrts to gcc configure.

diff --git a/ChangeLog b/ChangeLog
index 497b00f..88f6d93 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -17,6 +17,8 @@
 	instead of void *.
 	* sysdeps/pthread/timer_create.c (timer_create): Do not use
 	timer_ptr2id to cast struct timer_node * to void *.
+	* scripts/build-many-glibcs.py [os == gnu] (build_gcc): Pass
+	--disable-libcilkrts to gcc configure.
 
 2018-01-27  James Clarke  <jrtc27@jrtc27.com>
 
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 8a2e068..fbb701e 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -1329,6 +1329,8 @@ class Config(object):
             tool_build = 'gcc'
             cfg_opts += ['--enable-languages=c,c++', '--enable-shared',
                          '--enable-threads']
+            if self.os == 'gnu':
+                cfg_opts += ['--disable-libcilkrts']
         self.build_cross_tool(cmdlist, 'gcc', tool_build, cfg_opts)
 
 

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

Summary of changes:
 ChangeLog                    |    2 ++
 scripts/build-many-glibcs.py |    2 ++
 2 files changed, 4 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]