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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 391B21382C5 for ; Mon, 3 May 2021 14:49:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87FBCE0839; Mon, 3 May 2021 14:49:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C577E0839 for ; Mon, 3 May 2021 14:49:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0FB8340A9F for ; Mon, 3 May 2021 14:49:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8E8D729 for ; Mon, 3 May 2021 14:49:35 +0000 (UTC) From: "Zamarin Arthur" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zamarin Arthur" Message-ID: <1620053234.a89e7f4a5d8af8c009cac6b47b29d6a1edfea0a2.arthurzam@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-process/iotop-c/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-process/iotop-c/iotop-c-1.17-r1.ebuild X-VCS-Directories: sys-process/iotop-c/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Zamarin Arthur X-VCS-Revision: a89e7f4a5d8af8c009cac6b47b29d6a1edfea0a2 X-VCS-Branch: dev Date: Mon, 3 May 2021 14:49:35 +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: 5b0a1325-a426-432b-9803-588936866f0c X-Archives-Hash: 6f0b1324d3fabc6ab189d7b9caa1e08a commit: a89e7f4a5d8af8c009cac6b47b29d6a1edfea0a2 Author: Zamarin Arthur gmail com> AuthorDate: Mon May 3 14:47:14 2021 +0000 Commit: Zamarin Arthur gmail com> CommitDate: Mon May 3 14:47:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a89e7f4a sys-process/iotop-c: fix compilation with llvm[-gold] The makefile adds LTO by default, resulting in failed compilation when using llvm without gold. By Adding `NO_FLTO=1` we disable LTO and it compiles. Closes: https://bugs.gentoo.org/785538 Signed-off-by: Zamarin Arthur gmail.com> sys-process/iotop-c/iotop-c-1.17-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-process/iotop-c/iotop-c-1.17-r1.ebuild b/sys-process/iotop-c/iotop-c-1.17-r1.ebuild index d778526f6..bc7986f85 100644 --- a/sys-process/iotop-c/iotop-c-1.17-r1.ebuild +++ b/sys-process/iotop-c/iotop-c-1.17-r1.ebuild @@ -27,7 +27,7 @@ FILECAPS=( ) src_compile() { - emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" + emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1 } src_install() {