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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2BB06158089 for ; Thu, 9 Nov 2023 02:00:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 661CE2BC01F; Thu, 9 Nov 2023 02:00:21 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 4491B2BC01F for ; Thu, 9 Nov 2023 02:00:21 +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 2AF66335C52 for ; Thu, 9 Nov 2023 02:00:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B489AAC for ; Thu, 9 Nov 2023 02:00:18 +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: <1699495171.b7bc44f3b35169406f0c54f86fd45c8f5d02deeb.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: b7bc44f3b35169406f0c54f86fd45c8f5d02deeb X-VCS-Branch: master Date: Thu, 9 Nov 2023 02:00:18 +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: 111fe957-fba3-4c47-aa96-f87ab5d8a8d1 X-Archives-Hash: 97064923b4c996bc546c588db20a265b commit: b7bc44f3b35169406f0c54f86fd45c8f5d02deeb Author: Sam James gentoo org> AuthorDate: Thu Nov 9 01:58:18 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Nov 9 01:59:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7bc44f3 toolchain.eclass: restore graphite for USE=jit minimal build graphite (isl) might be used for the just-built GCC. It's easier to just respect USE=graphite for the USE=jit minimal build in case the user passes some graphite flags rather than try strip them out. (The build would fail otherwise as the just-built GCC, even with --disable-bootstrap for the JIT build, would be invoked as ./xgcc ... -fgraphite-identity ... and error out in configure.) Reported by ano on IRC. Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index ac8b90c8c58a..60769c93877f 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1378,7 +1378,10 @@ toolchain_src_configure() { --disable-systemtap --enable-host-shared --enable-languages=jit - --without-isl + # Might be used for the just-built GCC. Easier to just + # respect USE=graphite here in case the user passes some + # graphite flags rather than try strip them out. + $(use_with graphite isl) --without-zstd --with-system-zlib )