mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Make build-many-glibcs.py build GCC for powerpcspe with --enable-obsolete.
The powerpcspe GCC port has been obsoleted in GCC 8 for not having had the removal of code for non-SPE processors completed. This patch accordingly arranges for build-many-glibcs.py to configure GCC with --enable-obsolete for affected configurations. This is temporary; either the port gets cleaned up and unobsoleted in GCC and the configure option can be removed, or the port gets removed in GCC and we should remove the corresponding glibc support. Tested with build-many-glibcs.py for the affected configurations. * scripts/build-many-glibcs.py (Context.add_all_configs): Use --enable-obsolete for powerpc-linux-gnuspe.
This commit is contained in:
@ -324,11 +324,12 @@ class Context(object):
|
||||
self.add_config(arch='powerpc',
|
||||
os_name='linux-gnuspe',
|
||||
gcc_cfg=['--disable-multilib', '--enable-secureplt',
|
||||
'--enable-e500-double'])
|
||||
'--enable-e500-double', '--enable-obsolete'])
|
||||
self.add_config(arch='powerpc',
|
||||
os_name='linux-gnuspe',
|
||||
variant='e500v1',
|
||||
gcc_cfg=['--disable-multilib', '--enable-secureplt'])
|
||||
gcc_cfg=['--disable-multilib', '--enable-secureplt',
|
||||
'--enable-obsolete'])
|
||||
self.add_config(arch='riscv64',
|
||||
os_name='linux-gnu',
|
||||
variant='rv64imac-lp64',
|
||||
|
Reference in New Issue
Block a user