From patchwork Tue Jul 4 10:33:26 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 21399 Received: (qmail 23521 invoked by alias); 4 Jul 2017 10:33:37 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 23467 invoked by uid 89); 4 Jul 2017 10:33:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: relay1.mentorg.com Date: Tue, 4 Jul 2017 10:33:26 +0000 From: Joseph Myers To: Subject: Update versions in build-many-glibcs.py [committed] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) This patch updates build-many-glibcs.py to use the current release branch of binutils and current releases of GMP and the Linux kernel. Committed. 2017-07-04 Joseph Myers * 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. diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 1a32c82..6e5ef91 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 = {}