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 0E54215802E for ; Thu, 27 Jun 2024 15:09:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 381ABE2A39; Thu, 27 Jun 2024 15:09:07 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1CC28E2A39 for ; Thu, 27 Jun 2024 15:09:07 +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 02A57335D6B for ; Thu, 27 Jun 2024 15:09:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6AF69126B for ; Thu, 27 Jun 2024 15:09:04 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1719500863.a9d5d7800e5a8d6ebf9d2defee6ea2b4f67780f4.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/rust/rust-1.79.0.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: a9d5d7800e5a8d6ebf9d2defee6ea2b4f67780f4 X-VCS-Branch: master Date: Thu, 27 Jun 2024 15:09:04 +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: e897d590-bb0d-4e1b-8bf3-bf7493d73606 X-Archives-Hash: f9acf1253cdb9c3b27cf8448aa570e2c commit: a9d5d7800e5a8d6ebf9d2defee6ea2b4f67780f4 Author: Arthur Zamarin gentoo org> AuthorDate: Thu Jun 27 14:46:15 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu Jun 27 15:07:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9d5d780 dev-lang/rust: fix cross compilation for musl Signed-off-by: Arthur Zamarin gentoo.org> dev-lang/rust/rust-1.79.0.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-lang/rust/rust-1.79.0.ebuild b/dev-lang/rust/rust-1.79.0.ebuild index 2cdde5c12fdc..e92cb50b5f17 100644 --- a/dev-lang/rust/rust-1.79.0.ebuild +++ b/dev-lang/rust/rust-1.79.0.ebuild @@ -499,6 +499,7 @@ src_configure() { if use elibc_musl; then cat <<- _EOF_ >> "${S}"/config.toml crt-static = false + musl-root = "$($(tc-getCC) -print-sysroot)/usr" _EOF_ fi done