mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Add build-many-glibcs.py --enable-obsolete-* configs.
We've had issues before with build failures (with new GCC) in code only built with --enable-obsolete-rpc or --enable-obsolete-nsl not being reported for a while because build-many-glibcs.py does not test those configure options. This patch adds configurations (32-bit and 64-bit) using those options so that in future we can notice quickly if they start failing to build. Tested the new configurations do build with GCC 8. * scripts/build-many-glibcs.py (Context.add_all_configs): Add x86_64 and i686 configs using --enable-obsolete-rpc --enable-obsolete-nsl.
This commit is contained in:
@ -384,6 +384,9 @@ class Context(object):
|
||||
{'arch': 'i686', 'ccopts': '-m32 -march=i686'}],
|
||||
extra_glibcs=[{'variant': 'disable-multi-arch',
|
||||
'cfg': ['--disable-multi-arch']},
|
||||
{'variant': 'enable-obsolete',
|
||||
'cfg': ['--enable-obsolete-rpc',
|
||||
'--enable-obsolete-nsl']},
|
||||
{'variant': 'static-pie',
|
||||
'cfg': ['--enable-static-pie']},
|
||||
{'variant': 'x32-static-pie',
|
||||
@ -397,6 +400,11 @@ class Context(object):
|
||||
'arch': 'i686',
|
||||
'ccopts': '-m32 -march=i686',
|
||||
'cfg': ['--disable-multi-arch']},
|
||||
{'variant': 'enable-obsolete',
|
||||
'arch': 'i686',
|
||||
'ccopts': '-m32 -march=i686',
|
||||
'cfg': ['--enable-obsolete-rpc',
|
||||
'--enable-obsolete-nsl']},
|
||||
{'arch': 'i486',
|
||||
'ccopts': '-m32 -march=i486'},
|
||||
{'arch': 'i586',
|
||||
|
Reference in New Issue
Block a user