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-599-g4179178


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  4179178bf0cfafe72c00647b79e69e47bd5c6a89 (commit)
      from  cbce12d22b91a2393158ed7cb0a81bb26478dafd (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=4179178bf0cfafe72c00647b79e69e47bd5c6a89

commit 4179178bf0cfafe72c00647b79e69e47bd5c6a89
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon Jan 2 22:13:42 2017 +0000

    Add build-many-glibcs.py powerpc-linux-gnu-power4 build.
    
    The 32-bit powerpc configurations in build-many-glibcs.py were failing
    to cover the powerpc32 multiarch code at all, because that code is
    only built for power4 and above configurations.  This patch adds a
    32-bit power4 configuration so that at least some of that multiarch
    code gets build-tested.  (This is preparation for reviewing the w_*
    file renaming, which affects such powerpc32 multiarch files.)
    
    	* scripts/build-many-glibcs.py (Context.add_all_configs): Add
    	power4 glibc for powerpc-linux-gnu.

diff --git a/ChangeLog b/ChangeLog
index 7762fb7..d8300bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-01-02  Joseph Myers  <joseph@codesourcery.com>
+
+	* scripts/build-many-glibcs.py (Context.add_all_configs): Add
+	power4 glibc for powerpc-linux-gnu.
+
 2017-01-02  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	* sysvipc/test-sysvsem.c (do_test): Define and use union semun on
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 9ca9236..60a7874 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -268,7 +268,10 @@ class Context(object):
                         os_name='linux-gnu')
         self.add_config(arch='powerpc',
                         os_name='linux-gnu',
-                        gcc_cfg=['--disable-multilib', '--enable-secureplt'])
+                        gcc_cfg=['--disable-multilib', '--enable-secureplt'],
+                        extra_glibcs=[{'variant': 'power4',
+                                       'ccopts': '-mcpu=power4',
+                                       'cfg': ['--with-cpu=power4']}])
         self.add_config(arch='powerpc',
                         os_name='linux-gnu',
                         variant='soft',

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

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