From patchwork Tue Aug 15 17:02:28 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 7101 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 (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4RQHdf1BKqz3wk0 for ; Tue, 15 Aug 2023 17:03:02 +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 (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4RQHdR1GxTz3bH; Tue, 15 Aug 2023 17:02:51 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4RQHdQ5kq3z306y; Tue, 15 Aug 2023 17:02:50 +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 4RQHdK6qSpz306n for ; Tue, 15 Aug 2023 17:02:45 +0000 (UTC) Received: from michael.haj.ipfire.org (michael.haj.ipfire.org [172.28.1.242]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "michael.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4RQHdC480Vz2WR; Tue, 15 Aug 2023 17:02:39 +0000 (UTC) Received: by michael.haj.ipfire.org (Postfix, from userid 0) id 4RQHdB6ywjzTgcX; Tue, 15 Aug 2023 17:02:38 +0000 (UTC) From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 5/7] binutils: Disable building gprof-ng in toolchain Date: Tue, 15 Aug 2023 17:02:28 +0000 Message-Id: <20230815170230.306397-5-michael.tremer@ipfire.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230815170230.306397-1-michael.tremer@ipfire.org> References: <20230815170230.306397-1-michael.tremer@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: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" This won't build against glibc 2.38. Since we don't need it, it is being turned off. Signed-off-by: Michael Tremer --- lfs/binutils | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lfs/binutils b/lfs/binutils index 35b0b6a35..2b5c65592 100644 --- a/lfs/binutils +++ b/lfs/binutils @@ -75,7 +75,8 @@ else --prefix=$(TOOLS_DIR) \ --with-lib-path=$(TOOLS_DIR)/lib \ --with-sysroot \ - --disable-nls + --disable-nls \ + --disable-gprofng EXTRA_MAKE = EXTRA_INSTALL = endif