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 23608158451 for ; Fri, 12 Jan 2024 11:46:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0389BE2AC7; Fri, 12 Jan 2024 11:46:05 +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 D5ADFE2AC7 for ; Fri, 12 Jan 2024 11:46:04 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA81B343132 for ; Fri, 12 Jan 2024 11:46:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BFF31494 for ; Fri, 12 Jan 2024 11:46:02 +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: <1705059948.fc81391f87922d64756975a60741a97d15cab966.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: fc81391f87922d64756975a60741a97d15cab966 X-VCS-Branch: master Date: Fri, 12 Jan 2024 11:46:02 +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: afc94ef1-7c51-4f30-899e-008f0d4d8879 X-Archives-Hash: a0b3bed62f70779978d3bb8f943cf3c2 commit: fc81391f87922d64756975a60741a97d15cab966 Author: Sam James gentoo org> AuthorDate: Fri Jan 12 11:43:50 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 12 11:45:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc81391f toolchain.eclass: don't enable PCH by default in IUSE (but effective noop) It's already masked in use.mask, even. PCH has been proven to be unreliable. 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 8b7b730d6b9a..b1f4ea9caf68 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -253,7 +253,7 @@ if [[ ${PN} != kgcc64 && ${PN} != gcc-* ]] ; then IUSE+=" ada" IUSE+=" vtv" IUSE+=" jit" - IUSE+=" +pie +ssp +pch" + IUSE+=" +pie +ssp pch" IUSE+=" systemtap" TC_FEATURES+=( systemtap )