From patchwork Tue May 7 14:46:59 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 1096371 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-101798-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="iBRkbHqY"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 44z2WQ2tyHz9s00 for ; Wed, 8 May 2019 00:47:14 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=xTSwrFma3FBNvljrVwNzYZRW7JnHs WN3cvOZnEQBrg3TBYcX7Z5+USkr9KmMc+MNiFdzL3pvbSxuSgVtsY9IMHQzsnQMT xrOQTn0lDhxQoIPppiFqvLEoN+NL9z9s+iqFMJWFfibK7YoFqAQlu/TZdufULD9O vr6jCE8R66e44Y= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=EBahzo/ZoGpX75RomECWc2XBAiM=; b=iBR kbHqYkbv6sl3AEig4UkX+WxNT41MDuEjA99HpJcWJZKKGOyKPV8I4rZEdb2DrsDM 6ZuDhdYEJbPziYPT9Am3W2QS7FmvQTGSWjPrOE4QO1RD0RwR+BL38Rk7E5g5UFMH F9EXHfhMQGJTTTpU88DWkl8ib9JwSTKJI4lVjD+U= Received: (qmail 122534 invoked by alias); 7 May 2019 14:47:09 -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 122526 invoked by uid 89); 7 May 2019 14:47:08 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-15.1 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 autolearn=ham version=3.3.1 spammy= X-HELO: relay1.mentorg.com Date: Tue, 7 May 2019 14:46:59 +0000 From: Joseph Myers To: Subject: Use GCC 9 in build-many-glibcs.py [committed] Message-ID: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Committed. diff --git a/ChangeLog b/ChangeLog index c71f249125..1ddb948fa8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2019-05-07 Joseph Myers + + * scripts/build-many-glibcs.py (Context.checkout): Default GCC + version to 9 branch. + 2019-05-03 Anton Youdkevitch * sysdeps/aarch64/multiarch/ifunc-impl-list.c: Added diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index fd811af9b3..6f9a35331f 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -711,7 +711,7 @@ class Context(object): def checkout(self, versions): """Check out the desired component versions.""" default_versions = {'binutils': 'vcs-2.32', - 'gcc': 'vcs-8', + 'gcc': 'vcs-9', 'glibc': 'vcs-mainline', 'gmp': '6.1.2', 'linux': '5.0',