]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update build-many-glibcs.py binutils, mpfr, mpc versions.
authorJoseph Myers <joseph@codesourcery.com>
Mon, 15 Jan 2018 14:02:54 +0000 (14:02 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 15 Jan 2018 14:02:54 +0000 (14:02 +0000)
* scripts/build-many-glibcs.py (Context.checkout): Default
binutils version to 2.30 branch, MPFR version to 4.0.0 and MPC
version to 1.1.0.

ChangeLog
scripts/build-many-glibcs.py

index e5e69842647e7776e381be6b064e04c450575e8e..bbbdb2c80767562a41106b8cef97bab1e9706bb4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-01-15  Joseph Myers  <joseph@codesourcery.com>
+
+       * scripts/build-many-glibcs.py (Context.checkout): Default
+       binutils version to 2.30 branch, MPFR version to 4.0.0 and MPC
+       version to 1.1.0.
+
 2018-01-13  Carlos O'Donell  <carlos@redhat.com>
 
        [BZ #22707]
index 75a920a1611e5b298a6c913eab78bf37eeb98676..8849574b3ad3979b85be08af850814109292fa44 100755 (executable)
@@ -688,13 +688,13 @@ class Context(object):
 
     def checkout(self, versions):
         """Check out the desired component versions."""
-        default_versions = {'binutils': 'vcs-2.29',
+        default_versions = {'binutils': 'vcs-2.30',
                             'gcc': 'vcs-7',
                             'glibc': 'vcs-mainline',
                             'gmp': '6.1.2',
                             'linux': '4.14',
-                            'mpc': '1.0.3',
-                            'mpfr': '3.1.6'}
+                            'mpc': '1.1.0',
+                            'mpfr': '4.0.0'}
         use_versions = {}
         explicit_versions = {}
         for v in versions: