From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1105) id 4327B3858D28; Tue, 29 Aug 2023 14:11:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4327B3858D28 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1693318311; bh=XABwSLH8ijDQB1TN0pxj1OfnKnc1Exkd+vSbqSI0kTE=; h=From:To:Subject:Date:From; b=t3QfIsJSkWERj/N/2jQtFbjLhls7I8Eb32TeJsBpGwAZiYKrx6NUBKgxwI+zH1s02 0Iux1QKYnA1Zzc7CI0omKPXaeC3aATkWU0dla+hr4VtWSCRcFTwy5oTOZYqZWkU3aE mkQ3u8vpnUgdUC25rOkCF+zR8w43n6GQ7yvS2t4Y= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Joseph Myers To: glibc-cvs@sourceware.org Subject: [glibc] Use GMP 6.3.0, MPFR 4.2.1 in build-many-glibcs.py X-Act-Checkin: glibc X-Git-Author: Joseph Myers X-Git-Refname: refs/heads/master X-Git-Oldrev: dfe8c445883a50a55564b02b6957257bfc510db4 X-Git-Newrev: d3c34a2dd982a77abf631ea2f88f4efab1b064c4 Message-Id: <20230829141151.4327B3858D28@sourceware.org> Date: Tue, 29 Aug 2023 14:11:51 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d3c34a2dd982a77abf631ea2f88f4efab1b064c4 commit d3c34a2dd982a77abf631ea2f88f4efab1b064c4 Author: Joseph Myers Date: Tue Aug 29 14:11:35 2023 +0000 Use GMP 6.3.0, MPFR 4.2.1 in build-many-glibcs.py This patch makes build-many-glibcs.py use the new GMP 6.3.0 and MPFR 4.2.1 releases. Tested with build-many-glibcs.py (host-libraries, compilers and glibcs builds). Diff: --- scripts/build-many-glibcs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index fb56a4a90b..3082522140 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -803,10 +803,10 @@ class Context(object): default_versions = {'binutils': 'vcs-2.41', 'gcc': 'vcs-13', 'glibc': 'vcs-mainline', - 'gmp': '6.2.1', + 'gmp': '6.3.0', 'linux': '6.4', 'mpc': '1.3.1', - 'mpfr': '4.2.0', + 'mpfr': '4.2.1', 'mig': 'vcs-mainline', 'gnumach': 'vcs-mainline', 'hurd': 'vcs-mainline'}