From patchwork Fri Jul 20 10:15:13 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zong Li X-Patchwork-Id: 28522 Received: (qmail 111272 invoked by alias); 20 Jul 2018 10:15:55 -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 110803 invoked by uid 89); 20 Jul 2018 10:15:37 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.7 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_SHORT, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=UD:kernel.org, 7.1.0 X-HELO: ATCSQR.andestech.com From: Zong Li To: , CC: , Zong Li Subject: [PATCH] Change URL of gcc's tarball Date: Fri, 20 Jul 2018 18:15:13 +0800 Message-ID: <1532081713-26010-1-git-send-email-zong@andestech.com> MIME-Version: 1.0 X-DNSRBL: X-MAIL: ATCSQR.andestech.com w6KAG0F4040976 After 7.1.0 version, there is no .bz2 format of gcc's tarball. * scripts/build-many-glibcs.py (checkout_tar): Change the URL of gcc's tarball. --- ChangeLog | 2 ++ scripts/build-many-glibcs.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f87b32c..dd34881 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ * elf/Makefile (LDFLAGS-tst-execstack-mod): Change variable name by adding the file extension (.so). + * scripts/build-many-glibcs.py (checkout_tar): Change the URL of gcc's + tarball. 2018-07-20 Samuel Thibault diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 601718d..892288d 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -869,7 +869,7 @@ class Context(object): if update: return url_map = {'binutils': 'https://ftp.gnu.org/gnu/binutils/binutils-%(version)s.tar.bz2', - 'gcc': 'https://ftp.gnu.org/gnu/gcc/gcc-%(version)s/gcc-%(version)s.tar.bz2', + 'gcc': 'https://ftp.gnu.org/gnu/gcc/gcc-%(version)s/gcc-%(version)s.tar.gz', 'gmp': 'https://ftp.gnu.org/gnu/gmp/gmp-%(version)s.tar.xz', 'linux': 'https://www.kernel.org/pub/linux/kernel/v4.x/linux-%(version)s.tar.xz', 'mpc': 'https://ftp.gnu.org/gnu/mpc/mpc-%(version)s.tar.gz',