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 73D05158094 for ; Fri, 1 Jul 2022 16:57:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86E0CE0729; Fri, 1 Jul 2022 16:57:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 1EF8EE0729 for ; Fri, 1 Jul 2022 16:57:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A3EA4341A66 for ; Fri, 1 Jul 2022 16:57:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBF1E4D3 for ; Fri, 1 Jul 2022 16:57:31 +0000 (UTC) From: "Alfred Persson Forsberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfred Persson Forsberg" Message-ID: <1656694616.d0dcc91c2cbf89947fc06feea66901afbe1c5866.cat@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/monero/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-p2p/monero/monero-0.17.3.2.ebuild X-VCS-Directories: net-p2p/monero/ X-VCS-Committer: cat X-VCS-Committer-Name: Alfred Persson Forsberg X-VCS-Revision: d0dcc91c2cbf89947fc06feea66901afbe1c5866 X-VCS-Branch: dev Date: Fri, 1 Jul 2022 16:57:31 +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: 63ed1e87-d5e4-4e75-b571-6027a42a20d1 X-Archives-Hash: ddfe143ea2de2e802da06c88a1fa7b44 commit: d0dcc91c2cbf89947fc06feea66901afbe1c5866 Author: Alfred Persson Forsberg catcream org> AuthorDate: Fri Jul 1 12:38:03 2022 +0000 Commit: Alfred Persson Forsberg catcream org> CommitDate: Fri Jul 1 16:56:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d0dcc91c net-p2p/monero: fix build for musl This patch sets -DSTACK_TRACE=OFF when elibc_musl is defined. Execinfo is not provided by musl libc and therefore the build fails. Other, and probably better solutions would be to not depend on execinfo or to package a standalone libexecinfo (https://github.com/mikroskeem/libexecinfo) and add it to the DEPEND-array if using musl. But that's better to take upstream. I think this is totally fine for most users for now. Signed-off-by: Alfred Persson Forsberg catcream.org> (cherry picked from commit 127aa286150e16e92305fda7cbbdde70da976147) net-p2p/monero/monero-0.17.3.2.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net-p2p/monero/monero-0.17.3.2.ebuild b/net-p2p/monero/monero-0.17.3.2.ebuild index 656c93edf..a3816f142 100644 --- a/net-p2p/monero/monero-0.17.3.2.ebuild +++ b/net-p2p/monero/monero-0.17.3.2.ebuild @@ -52,6 +52,8 @@ src_configure() { -DUSE_DEVICE_TREZOR=OFF ) + use elibc_musl && mycmakeargs+=( -DSTACK_TRACE=OFF ) + cmake_src_configure }