about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xscripts/build-many-glibcs.py6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 5bbc323c1c..b7c0e9e63b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-07-04  Joseph Myers  <joseph@codesourcery.com>
+
+	* 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.
+
 2017-07-04  Florian Weimer  <fweimer@redhat.com>
 
 	* resolv/resolv_conf.c (struct resolv_conf_global): Clarify free
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 = {}