From patchwork Sun Aug 16 10:29:50 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 3365 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) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4BTtmZ6Z21z3x1D for ; Sun, 16 Aug 2020 10:33: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 (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4BTtk25tdyz11v; Sun, 16 Aug 2020 10:30:50 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4BTtk21PFhz30Wt; Sun, 16 Aug 2020 10:30: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 "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4BTtk13xhVz2xjj for ; Sun, 16 Aug 2020 10:30:49 +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) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 4BTtjx2mf4zyg; Sun, 16 Aug 2020 10:30:45 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1597573845; 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: in-reply-to:in-reply-to:references:references; bh=iyBriPIdscKaN1+nO5WDNqVTINT8itfXLkA+Cx1qi6A=; b=nQo6qqUi8Ca+VkHltYAM9FacCVCnNiwbh11lrxiRbi15kpvh7VAUe3iiXDHldoXlfObTd6 4zSB62UDzI12rJDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1597573845; 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: in-reply-to:in-reply-to:references:references; bh=iyBriPIdscKaN1+nO5WDNqVTINT8itfXLkA+Cx1qi6A=; b=jQ/NU2/MWxrZaBxZaQ49gTrAHwxgtopu5ozzbY+aWETwri2iAALdtrG/dcJUDz4mqPyBXt 9y6FaPs2PF3cGl1i81YThoHo9sWM4v71hEa0lvL3ZpQ4lt21MjQ1WywuPY6ta+zXIB9Dsd db4q0uGNp9EyqtccDtt9LRJ8RrAWYXyLY43hatEwvw9/0h4xTZSb5OOwwx5KzjhEWoeIRM fQoDIrnfrL+9Fxlr+EySGrf932vyliczHCBZtDtHOq+Uc+tGyTRgUFxVpUNxEb+49FS3+R yLWLNZIKFQ3QmxzfcSvGJyfJDdVXy5+ss2YtfwEu2DUImMBpw5wg2vbTm3aJuw== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 59/62] glibc: Pass -Wno-error=maybe-uninitialized Date: Sun, 16 Aug 2020 10:29:50 +0000 Message-Id: <20200816102953.3881-59-michael.tremer@ipfire.org> In-Reply-To: <20200816102953.3881-1-michael.tremer@ipfire.org> References: <20200816102953.3881-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 is required to build glibc in the toolchain stage on aarch64 due to messy headers on the host system. Signed-off-by: Michael Tremer --- lfs/glibc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lfs/glibc b/lfs/glibc index 546b53b12..abb8b54bb 100644 --- a/lfs/glibc +++ b/lfs/glibc @@ -49,6 +49,8 @@ else --with-headers=$(TOOLS_DIR)/include \ libc_cv_forced_unwind=yes \ libc_cv_c_cleanup=yes + + CFLAGS += -Wno-error=maybe-uninitialized endif # Disable hardware FP for armv5tel