]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add build-many-glibcs.py --enable-obsolete-* configs.
authorJoseph Myers <joseph@codesourcery.com>
Mon, 10 Sep 2018 16:54:34 +0000 (16:54 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 10 Sep 2018 16:54:34 +0000 (16:54 +0000)
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.

ChangeLog
scripts/build-many-glibcs.py

index 611caf9bd84c83b4f59e285fab2712f33812c12d..510e5bfdf5af7bc85189bd2b7daaa73d60d6147a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-09-10  Joseph Myers  <joseph@codesourcery.com>
+
+       * scripts/build-many-glibcs.py (Context.add_all_configs): Add
+       x86_64 and i686 configs using --enable-obsolete-rpc
+       --enable-obsolete-nsl.
+
 2018-09-06  Stefan Liebler  <stli@linux.ibm.com>
 
        * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
index 6cc94770b67881bc892d5764fab4aeb877df57eb..a7c2b67bce7cf374e32cce93f69f236329f25fb4 100755 (executable)
@@ -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',