From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E1A91581EE for ; Mon, 07 Apr 2025 20:49:17 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id EBEDA343154 for ; Mon, 07 Apr 2025 20:49:16 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B07DB1104B6; Mon, 07 Apr 2025 20:48:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id AA3B21104B6 for ; Mon, 07 Apr 2025 20:48:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A6453430EB for ; Mon, 07 Apr 2025 20:48:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 750D9F80 for ; Mon, 07 Apr 2025 20:48:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1744058909.18ad0c1a648cfb97fde0f08f848f0ed75fc4c083.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/kernel-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 18ad0c1a648cfb97fde0f08f848f0ed75fc4c083 X-VCS-Branch: master Date: Mon, 07 Apr 2025 20:48:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ac5ffd9a-8f90-4572-a3dc-73ff3caaa59a X-Archives-Hash: d300ceed5484f57ada3e67b324d3066b commit: 18ad0c1a648cfb97fde0f08f848f0ed75fc4c083 Author: Sam James gentoo org> AuthorDate: Mon Apr 7 20:44:57 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 7 20:48:29 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18ad0c1a kernel-build.eclass: disable -Werror (for host tools at least) WERROR=0 disables -Werror for host tools at least, so let's use that. I'll also send a config change. Bug: https://bugs.gentoo.org/939106 Bug: https://bugs.gentoo.org/940904 Bug: https://bugs.gentoo.org/942303 Signed-off-by: Sam James gentoo.org> eclass/kernel-build.eclass | 1 + 1 file changed, 1 insertion(+) diff --git a/eclass/kernel-build.eclass b/eclass/kernel-build.eclass index 1d8c396b9590..ee4cf1413a60 100644 --- a/eclass/kernel-build.eclass +++ b/eclass/kernel-build.eclass @@ -207,6 +207,7 @@ kernel-build_src_configure() { tc-export_build_env MAKEARGS=( V=1 + WERROR=0 HOSTCC="$(tc-getBUILD_CC)" HOSTCXX="$(tc-getBUILD_CXX)"