From patchwork Wed Apr 26 21:39:45 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 68335 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 50DFF3858431 for ; Wed, 26 Apr 2023 21:40:04 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from esa4.mentor.iphmx.com (esa4.mentor.iphmx.com [68.232.137.252]) by sourceware.org (Postfix) with ESMTPS id 5A6583858D3C for ; Wed, 26 Apr 2023 21:39:52 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 5A6583858D3C Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mentor.com X-IronPort-AV: E=Sophos;i="5.99,229,1677571200"; d="scan'208";a="3639243" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa4.mentor.iphmx.com with ESMTP; 26 Apr 2023 13:39:49 -0800 IronPort-SDR: XSbbDBBAXp9HrjEX74hRoWQ8TjdatjYFWK2kbFcpLVJC9Mstef58SxrvSjJpjWT7cXfKF0dQ5N vZOzSszxA/U0SfrGc8EuXwOIWrhTbCZlcp2EOhfhqVeyzttsiUaEkT2JMuH3WStE4z2RzzBJMJ QFgKd2TmjNUu0ag4P96fPjPZ5Ggsmks/hmobxvk/xIaHBFgiIDib1F6v4Bg3HjSrHiOTQIBeze LZqvhhnXEyB3MqGDHvN4K8PFPwPgExo5vcNjc4RLe/+G4wO+uVIICqKLlo6q4453eyxuKidPQf RWc= Date: Wed, 26 Apr 2023 21:39:45 +0000 From: Joseph Myers To: Subject: Use GCC 13 branch, Linux 6.3 in build-many-glibcs.py Message-ID: MIME-Version: 1.0 X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: svr-ies-mbx-15.mgc.mentorg.com (139.181.222.15) To svr-ies-mbx-10.mgc.mentorg.com (139.181.222.10) X-Spam-Status: No, score=-3113.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) 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+patchwork=sourceware.org@sourceware.org Sender: "Libc-alpha" This patch updates build-many-glibcs.py to use Linux 6.3 and GCC 13 branch by default. Tested with build-many-glibcs.py (host-libraries, compilers and glibc builds). Reviewed-by: Carlos O'Donell diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 82f8d97281..f7cb04a597 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -792,10 +792,10 @@ class Context(object): def checkout(self, versions): """Check out the desired component versions.""" default_versions = {'binutils': 'vcs-2.40', - 'gcc': 'vcs-12', + 'gcc': 'vcs-13', 'glibc': 'vcs-mainline', 'gmp': '6.2.1', - 'linux': '6.2', + 'linux': '6.3', 'mpc': '1.3.1', 'mpfr': '4.2.0', 'mig': 'vcs-mainline',