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 50801158094 for ; Sun, 25 Sep 2022 17:29:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 917F4E1041; Sun, 25 Sep 2022 17:29:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 77FA4E1041 for ; Sun, 25 Sep 2022 17:29:00 +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 B4D6D340FB8 for ; Sun, 25 Sep 2022 17:28:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BA951E for ; Sun, 25 Sep 2022 17:28:58 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1664126724.3d08936b268a0b83d91b2085c8588b6e3cbe88bc.gyakovlev@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.64.0-r1.ebuild dev-lang/rust/rust-1.64.0.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 3d08936b268a0b83d91b2085c8588b6e3cbe88bc X-VCS-Branch: master Date: Sun, 25 Sep 2022 17:28:58 +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: 6b64f616-f3b1-4269-aed5-a356799a95c1 X-Archives-Hash: dc6ae5d4fee10ce7ebe835f01aa5bef8 commit: 3d08936b268a0b83d91b2085c8588b6e3cbe88bc Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Sep 25 17:24:43 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Sep 25 17:25:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d08936b dev-lang/rust: fix alt-abi support, filter out flto in 1.64.0 Bug: https://bugs.gentoo.org/866231 Closes: https://bugs.gentoo.org/872815 Signed-off-by: Georgy Yakovlev gentoo.org> dev-lang/rust/{rust-1.64.0.ebuild => rust-1.64.0-r1.ebuild} | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-lang/rust/rust-1.64.0.ebuild b/dev-lang/rust/rust-1.64.0-r1.ebuild similarity index 99% rename from dev-lang/rust/rust-1.64.0.ebuild rename to dev-lang/rust/rust-1.64.0-r1.ebuild index 9f7e86a87d56..d506b1ed43fb 100644 --- a/dev-lang/rust/rust-1.64.0.ebuild +++ b/dev-lang/rust/rust-1.64.0-r1.ebuild @@ -294,14 +294,13 @@ src_prepare() { } src_configure() { - use system-llvm && filter-flags '-flto*' # https://bugs.gentoo.org/862109 + filter-flags '-flto*' # https://bugs.gentoo.org/862109 https://bugs.gentoo.org/866231 local rust_target="" rust_targets="" arch_cflags use_libcxx="false" - local chost_target="$(get_abi_CHOST ${v##*.})" # Collect rust target names to compile standard libs for all ABIs. for v in $(multilib_get_enabled_abi_pairs); do - rust_targets+=",\"$(rust_abi ${chost_target})\"" + rust_targets+=",\"$(rust_abi $(get_abi_CHOST ${v##*.}))\"" done if use wasm; then rust_targets+=",\"wasm32-unknown-unknown\""