From patchwork Wed May 6 15:42:34 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 1284519 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=2620:52:3:1:0:246e:9693:128c; helo=sourceware.org; envelope-from=libc-alpha-bounces@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Received: from sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49HLTF2Kyjz9sTw for ; Thu, 7 May 2020 01:42:57 +1000 (AEST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 41EB93948458; Wed, 6 May 2020 15:42:54 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from esa3.mentor.iphmx.com (esa3.mentor.iphmx.com [68.232.137.180]) by sourceware.org (Postfix) with ESMTPS id DD4803898534 for ; Wed, 6 May 2020 15:42:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org DD4803898534 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=joseph_myers@mentor.com IronPort-SDR: dO8T68RPxyvTNYSy8U9VBvE5oAofseDas9gv+CP2eCN6uDfsBBYuId8/FUwO6/ktCwjv8e3Sde dQpNlLNk+p9j9n9YCeEXSx67PTL1rdqspVBWpFaGBoV+Ydi9Q+9fWay5EU+KRpnQW36vIc3q6h TULBhUGAiXosEqRxzoAnACs9BN+PxxPtGPzWlSSAkdi5RrBQ5ht6L/3vJ0XoKtwBhw5n0wtYkA aUeTKc+rQYAbvIABQnW6opAO0og6QlOWgXCQIVPRvI21QHwStCi1hup4+Ol7ssHOOQr2onvT1G PKM= X-IronPort-AV: E=Sophos;i="5.73,359,1583222400"; d="scan'208";a="48582070" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa3.mentor.iphmx.com with ESMTP; 06 May 2020 07:42:39 -0800 IronPort-SDR: SlqywcqdrS9wK0LaKxwdnHajDeN8RYtyhxMWA+1iazgIIKcGtJAVNQqktyzagGwnGwCYIgMW94 I/RpYJUGMznH24Ff/lmzO7QVpDY4qiPkQW5ARBBtBFfSIHXKKncz0M+8OMnZ38gSnG3820HEPs 78oAJmph3zmHjLnojWtPTSl5hYofLl4oNeuCe9BmsijigrtgRKFCRRNoxfE83SoVs20PVwkheT h+kktG/VP5XNOMbuxyrhB9amiXB3uJGEtx+kbgsdLP17bKlS42VnUAxx0Y55RdeRc32IrVTEcl s8k= Date: Wed, 6 May 2020 15:42:34 +0000 From: Joseph Myers X-X-Sender: jsm28@digraph.polyomino.org.uk To: Subject: Use GCC 10 branch in build-many-glibcs.py [committed] Message-ID: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: SVR-IES-MBX-07.mgc.mentorg.com (139.181.222.7) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) X-Spam-Status: No, score=-12.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" This updates the default GCC version used in build-many-glibcs.py when no version is specified explicitly. I'm replacing my bot using GCC 8 with one using GCC 10 (leaving the GCC 9 and GCC mainline bots running as at present). Committed. diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 4832912b28..6c6615b200 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -747,7 +747,7 @@ class Context(object): def checkout(self, versions): """Check out the desired component versions.""" default_versions = {'binutils': 'vcs-2.34', - 'gcc': 'vcs-9', + 'gcc': 'vcs-10', 'glibc': 'vcs-mainline', 'gmp': '6.2.0', 'linux': '5.6',