diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | scripts/build-many-glibcs.py | 11 |
2 files changed, 11 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog index 8ce5a11c35..95e8df9070 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-12-19 Joseph Myers <joseph@codesourcery.com> + + * scripts/build-many-glibcs.py (Context.add_all_configs): Specify + CPU or FPU for ARM hard-float configurations. + 2017-12-18 Joseph Myers <joseph@codesourcery.com> * nptl/tst-attr3.c: Include <libc-diag.h>. diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 5453000df0..dd4c70d572 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -175,19 +175,20 @@ class Context(object): gcc_cfg=['--with-arch=armv7-a']) self.add_config(arch='arm', os_name='linux-gnueabihf', - gcc_cfg=['--with-float=hard'], + gcc_cfg=['--with-float=hard', '--with-cpu=arm926ej-s'], extra_glibcs=[{'variant': 'v7a', - 'ccopts': '-march=armv7-a'}, + 'ccopts': '-march=armv7-a -mfpu=vfpv3'}, {'variant': 'v7a-disable-multi-arch', - 'ccopts': '-march=armv7-a', + 'ccopts': '-march=armv7-a -mfpu=vfpv3', 'cfg': ['--disable-multi-arch']}]) self.add_config(arch='armeb', os_name='linux-gnueabihf', - gcc_cfg=['--with-float=hard']) + gcc_cfg=['--with-float=hard', '--with-cpu=arm926ej-s']) self.add_config(arch='armeb', os_name='linux-gnueabihf', variant='be8', - gcc_cfg=['--with-float=hard', '--with-arch=armv7-a']) + gcc_cfg=['--with-float=hard', '--with-arch=armv7-a', + '--with-fpu=vfpv3']) self.add_config(arch='hppa', os_name='linux-gnu') self.add_config(arch='ia64', |