diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-07-04 10:32:54 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-07-04 10:32:54 +0000 |
commit | f0107724c92eefbc0637e2a7e142adf57e87e30b (patch) | |
tree | 3018564d7c86175356b636d3610fa391bb032c82 /scripts/build-many-glibcs.py | |
parent | 89f6307c5d270ed4f11cee373031fa9f2222f2b9 (diff) | |
download | glibc-f0107724c92eefbc0637e2a7e142adf57e87e30b.tar.gz glibc-f0107724c92eefbc0637e2a7e142adf57e87e30b.tar.xz glibc-f0107724c92eefbc0637e2a7e142adf57e87e30b.zip |
Update versions in build-many-glibcs.py.
This patch updates build-many-glibcs.py to use the current release branch of binutils and current releases of GMP and the Linux kernel. * scripts/build-many-glibcs.py (Context.checkout): Default binutils version to 2.29 branch, GMP version to 6.1.2 and Linux kernel version to 4.12.
Diffstat (limited to 'scripts/build-many-glibcs.py')
-rwxr-xr-x | scripts/build-many-glibcs.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 1a32c82dff..6e5ef91c4d 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -682,11 +682,11 @@ class Context(object): def checkout(self, versions): """Check out the desired component versions.""" - default_versions = {'binutils': 'vcs-2.28', + default_versions = {'binutils': 'vcs-2.29', 'gcc': 'vcs-7', 'glibc': 'vcs-mainline', - 'gmp': '6.1.1', - 'linux': '4.11', + 'gmp': '6.1.2', + 'linux': '4.12', 'mpc': '1.0.3', 'mpfr': '3.1.5'} use_versions = {} |