diff options
author | Joseph Myers <joseph@codesourcery.com> | 2018-09-10 16:54:34 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2018-09-10 16:54:34 +0000 |
commit | 7244f13ded2f09c089df768a4587110d181d1fb8 (patch) | |
tree | 5a55d8b83bb755038a27be6a0adbf3750f7ccb1a /scripts | |
parent | 38245425a9add7bd22f8732219e0085432f223b6 (diff) | |
download | glibc-7244f13ded2f09c089df768a4587110d181d1fb8.tar glibc-7244f13ded2f09c089df768a4587110d181d1fb8.tar.gz glibc-7244f13ded2f09c089df768a4587110d181d1fb8.tar.bz2 glibc-7244f13ded2f09c089df768a4587110d181d1fb8.zip |
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.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-many-glibcs.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 6cc94770b6..a7c2b67bce 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -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', |