From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (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 9823615812D for ; Thu, 02 Jan 2025 23:32:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3265E0827; Thu, 02 Jan 2025 23:32:27 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 9C4CFE0827 for ; Thu, 02 Jan 2025 23:32:27 +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 CBCD633BEED for ; Thu, 02 Jan 2025 23:32:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3231711B5 for ; Thu, 02 Jan 2025 23:32:24 +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: <1735860717.3fa625c5967246ee3ffd59393b26379af4c91e8c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3fa625c5967246ee3ffd59393b26379af4c91e8c X-VCS-Branch: master Date: Thu, 02 Jan 2025 23:32:24 +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: 5cf642b1-11af-4461-bda5-712d0ca37394 X-Archives-Hash: bd07f2dc40b5111fdf6d9a9eebdd0aaa commit: 3fa625c5967246ee3ffd59393b26379af4c91e8c Author: Sam James gentoo org> AuthorDate: Thu Jan 2 23:30:56 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 2 23:31:57 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa625c5 toolchain.eclass: run fixincludes for x86_64-w32-mingw32 too This came up in a PR to add CI for mingw targets to crossdev, specifically https://github.com/gentoo/crossdev/actions/runs/12337160095/job/34430532180?pr=29. Bug: https://bugs.gentoo.org/925204 Bug: https://bugs.gentoo.org/946397 Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index acc51ead74cc..244de97076e4 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1804,7 +1804,7 @@ toolchain_src_configure() { fi case ${CBUILD}-${CHOST}-${CTARGET} in - *i686-w64-mingw32*|*x86_64-w64-mingw32*) + *i686-w64-mingw32*|*x86_64-w64-mingw32*|*x86_64-w32-mingw32*) # config/i386/t-cygming requires fixincludes (bug #925204) GCC_RUN_FIXINCLUDES=1 ;;