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 9EF72158094 for ; Tue, 20 Sep 2022 11:17:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE51EE0B20; Tue, 20 Sep 2022 11:17:54 +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 D4743E0B20 for ; Tue, 20 Sep 2022 11:17:54 +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 F0B46341086 for ; Tue, 20 Sep 2022 11:17:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 966865D4 for ; Tue, 20 Sep 2022 11:17:52 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1663672666.3d47ca4f047bc0ded5dc9f624beef421e5e0e678.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/lld-toolchain-symlinks/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-15.ebuild X-VCS-Directories: sys-devel/lld-toolchain-symlinks/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3d47ca4f047bc0ded5dc9f624beef421e5e0e678 X-VCS-Branch: master Date: Tue, 20 Sep 2022 11:17:52 +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: b3823498-89a9-4b37-9464-6936cc15317d X-Archives-Hash: 39d33a2f97628efbcef61feb8fbaaab4 commit: 3d47ca4f047bc0ded5dc9f624beef421e5e0e678 Author: Michał Górny gentoo org> AuthorDate: Tue Sep 20 11:13:37 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 20 11:17:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d47ca4f sys-devel/lld-toolchain-symlinks: Add for LLVM 15.x Signed-off-by: Michał Górny gentoo.org> .../lld-toolchain-symlinks-15.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-15.ebuild b/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-15.ebuild new file mode 100644 index 000000000000..75ee3dd007f7 --- /dev/null +++ b/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-15.ebuild @@ -0,0 +1,33 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multilib + +DESCRIPTION="Symlinks to use LLD on binutils-free system" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:LLVM" +SRC_URI="" +S=${WORKDIR} + +LICENSE="public-domain" +SLOT="${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="+native-symlinks" + +RDEPEND=" + sys-devel/lld +" + +src_install() { + use native-symlinks || return + + local abi + local dest=/usr/lib/llvm/${SLOT}/bin + dodir "${dest}" + dosym ../../../../bin/ld.lld "${dest}/ld" + for abi in $(get_all_abis); do + local abi_chost=$(get_abi_CHOST "${abi}") + dosym ../../../../bin/ld.lld "${dest}/${abi_chost}-ld" + done +}