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-1159-g3005b70


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  3005b70510f741082c97ae5d82e7c5946c139853 (commit)
      from  69231fabdd9460ba95adaa095d6c6848f16bdfab (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=3005b70510f741082c97ae5d82e7c5946c139853

commit 3005b70510f741082c97ae5d82e7c5946c139853
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed Jan 24 23:48:52 2018 +0000

    Add soft-float ColdFire to build-many-glibcs.py.
    
    Since it turns out soft-float ColdFire has a different glibc ABI to
    hard-float ColdFire, as well as various differences in which glibc
    code gets built, this patch adds such a configuration to
    build-many-glibcs.py to (hopefully) complete the set of ABIs being
    tested.  (Note that the build for soft-float ColdFire is currently
    broken even with GCC mainline - I have a glibc patch to fix this, but
    it needs before-and-after build-many-glibcs.py comparison of stripped
    binaries for all configurations before being committed.)
    
    	* scripts/build-many-glibcs.py (Context.add_all_configs): Add
    	soft-float ColdFire configuration.

diff --git a/ChangeLog b/ChangeLog
index 2a7b318..428e6e8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2018-01-24  Joseph Myers  <joseph@codesourcery.com>
 
+	* scripts/build-many-glibcs.py (Context.add_all_configs): Add
+	soft-float ColdFire configuration.
+
 	* sysdeps/unix/sysv/linux/m68k/localplt.data: Move to ....
 	* sysdeps/unix/sysv/linux/m68k/m680x0/localplt.data: ... here.
 	* sysdeps/unix/sysv/linux/m68k/coldfire/localplt.data: New file.
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 6095584..28c04e6 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -205,6 +205,11 @@ class Context(object):
                         os_name='linux-gnu',
                         variant='coldfire',
                         gcc_cfg=['--with-arch=cf', '--disable-multilib'])
+        self.add_config(arch='m68k',
+                        os_name='linux-gnu',
+                        variant='coldfire-soft',
+                        gcc_cfg=['--with-arch=cf', '--with-cpu=54455',
+                                 '--disable-multilib'])
         self.add_config(arch='microblaze',
                         os_name='linux-gnu',
                         gcc_cfg=['--disable-multilib'])

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

Summary of changes:
 ChangeLog                    |    3 +++
 scripts/build-many-glibcs.py |    5 +++++
 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]