]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add soft-float ColdFire to build-many-glibcs.py.
authorJoseph Myers <joseph@codesourcery.com>
Wed, 24 Jan 2018 23:48:52 +0000 (23:48 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Wed, 24 Jan 2018 23:48:52 +0000 (23:48 +0000)
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.

ChangeLog
scripts/build-many-glibcs.py

index 2a7b318c92d638d59a8cde5eb182df20b7a71521..428e6e8f1d33e63673496209d085b330f49fae63 100644 (file)
--- 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.
index 60955849fbd28be7cd29c06b238668219ba3ee76..28c04e66fd5230843ae8cbb3bc7dff766e94be04 100755 (executable)
@@ -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'])