From patchwork Sun May 1 13:47:13 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 5581 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4KrnbC4hvgz3x1v for ; Sun, 1 May 2022 13:47:19 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4KrnbB2ZBYz44Q; Sun, 1 May 2022 13:47:18 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4KrnbB1T3Yz2xKQ; Sun, 1 May 2022 13:47:18 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4Krnb85zH7z2xKQ for ; Sun, 1 May 2022 13:47:16 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4Krnb82ctjzQd; Sun, 1 May 2022 13:47:16 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1651412836; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=t6lqnhXRJEGFAkhwCSpIzhci1e4HAR/jJccwfDhkHe0=; b=7caLHeIhjI6D4UeemB1g65e+Qk4aejJhQDKVu2bCMixoVkI4qZpXmvzCan19whMS17g++P wx8GOiIqoQf/URDw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1651412836; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=t6lqnhXRJEGFAkhwCSpIzhci1e4HAR/jJccwfDhkHe0=; b=RWYLQHttvnJAdqSdUnxdHruRdecTYym4jAhbdr6fL6iQh+n7mICV3SDe+cBDAJtAvteIAr 2C8jE5yXy4v+wLs7Ft4/1gcEmgm8ZKIwEyFFClRLCoOn45CGJWqFqzF7yPEVn9X3E97SHn xVhehjx5u1Z4NBevJOfzFqDBnqxElfyRkdAv/EdDswYdNr4EYoFljfqF9GgcRxHbXeyR3A fxpF4VCsmsCVJBUu1s4SVKejxWBMXhiyAxnVCX3Ie+bYNMc4N6yEHCXRw8F8onjYvAlJLi rjz3wl+6jQLH8EcsnoIfO88kByniiJsRsjjcCT3F7IPRScUC7Jt6Xkhe8e5Jzw== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] gcc: Update mpfr with patches for use in toolchain build Date: Sun, 1 May 2022 15:47:13 +0200 Message-Id: <20220501134713.144438-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Added mpfr consolidated patches file to mpfr in gcc. mpfr is built internally for use in the toolchain. - Confirmed working by running./make toolchain which ran successfully confirmed from the _build.toolchain.log file that the patches were successfully implemented for gcc pass 1, gcc pass L and gcc pass 2 - Full toolchain build successfully completed. Signed-off-by: Adolf Belka Reviewed-by: Peter Müller --- lfs/gcc | 1 + 1 file changed, 1 insertion(+) diff --git a/lfs/gcc b/lfs/gcc index 5ce29a13d..1d9d172c2 100644 --- a/lfs/gcc +++ b/lfs/gcc @@ -250,6 +250,7 @@ ifeq "$(TOOLCHAIN)" "1" cd $(DIR_APP) && tar xfa $(DIR_DL)/gmp-$(GMP_VER).tar.xz cd $(DIR_APP) && mv -v gmp-$(GMP_VER) gmp cd $(DIR_APP) && tar xfa $(DIR_DL)/mpfr-$(MPFR_VER).tar.xz + cd $(DIR_APP)/mpfr-$(MPFR_VER) && patch -Np1 < $(DIR_SRC)/src/patches/mpfr-4.1.0-cumulative-patches-1-to-13.patch cd $(DIR_APP) && mv -v mpfr-$(MPFR_VER) mpfr cd $(DIR_APP) && tar xfa $(DIR_DL)/mpc-$(MPC_VER).tar.gz cd $(DIR_APP) && mv -v mpc-$(MPC_VER) mpc