mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 22:10:13 +00:00
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.
This commit is contained in:
parent
cbce12d22b
commit
4179178bf0
@ -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
|
||||
|
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user