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 3A61915800C for ; Thu, 29 Dec 2022 22:27:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F3AEE0951; Thu, 29 Dec 2022 22:27: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35C24E0951 for ; Thu, 29 Dec 2022 22:27: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 478BB340E56 for ; Thu, 29 Dec 2022 22:27:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C1A77E7 for ; Thu, 29 Dec 2022 22:27: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: <1672352800.ae0e2d1acac972acdcbbc64789f1f6c6bd4588e9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/e2fsprogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/e2fsprogs/e2fsprogs-1.46.5-r4.ebuild X-VCS-Directories: sys-fs/e2fsprogs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ae0e2d1acac972acdcbbc64789f1f6c6bd4588e9 X-VCS-Branch: master Date: Thu, 29 Dec 2022 22:27: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: 3dc6b5bb-9be9-4a9c-a253-2c633c25a3f5 X-Archives-Hash: 8e0fb60dcd51e7562331df9549df5153 commit: ae0e2d1acac972acdcbbc64789f1f6c6bd4588e9 Author: Sam James gentoo org> AuthorDate: Thu Dec 29 22:25:26 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Dec 29 22:26:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae0e2d1a sys-fs/e2fsprogs: drop USE=lto Originally reported on reddit at https://old.reddit.com/r/Gentoo/comments/zkl6l8/configure_error_lto_not_supported_by_compiler/. As Ionen points out, this option just adds -flto (which users can and do normally via *FLAGS or package.env) but, problematically, forces unprefixed 'gcc-ar' etc. It does nothing else special. Fails on GCC-less systems. Users are free to enable LTO in the usual way. Signed-off-by: Sam James gentoo.org> sys-fs/e2fsprogs/e2fsprogs-1.46.5-r4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-fs/e2fsprogs/e2fsprogs-1.46.5-r4.ebuild b/sys-fs/e2fsprogs/e2fsprogs-1.46.5-r4.ebuild index 01be94e1f77e..a2475153eb26 100644 --- a/sys-fs/e2fsprogs/e2fsprogs-1.46.5-r4.ebuild +++ b/sys-fs/e2fsprogs/e2fsprogs-1.46.5-r4.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v${PV}/$ LICENSE="GPL-2 BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="cron fuse lto nls static-libs test +tools" +IUSE="cron fuse nls static-libs test +tools" RESTRICT="!test? ( test )" RDEPEND=" @@ -77,7 +77,7 @@ multilib_src_configure() { $(multilib_native_use_enable tools e2initrd-helper) --disable-fsck --disable-uuidd - $(use_enable lto) + --disable-lto --with-pthread )