diff options
author | Joseph Myers <joseph@codesourcery.com> | 2018-01-15 14:02:54 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2018-01-15 14:02:54 +0000 |
commit | 16d0f6ac3e43ce2f3703e77bda5ab742d42a5640 (patch) | |
tree | 2b6be1448507feb65e15334e0c8b2a6c32288d87 | |
parent | 505d39100454b38c62a8eff4c1b7c06b4a31f3aa (diff) | |
download | glibc-16d0f6ac3e43ce2f3703e77bda5ab742d42a5640.tar.gz glibc-16d0f6ac3e43ce2f3703e77bda5ab742d42a5640.tar.xz glibc-16d0f6ac3e43ce2f3703e77bda5ab742d42a5640.zip |
Update build-many-glibcs.py binutils, mpfr, mpc versions.
* 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.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | scripts/build-many-glibcs.py | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index e5e6984264..bbbdb2c807 100644 --- 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] diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 75a920a161..8849574b3a 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -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: |