commit:     2aec5a99eaf127a9c5a643317c1fcb5867e3f268
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 15:38:11 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 15:38:37 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aec5a99

sys-devel/lld-toolchain-symlinks: Support slotted LLD 14

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../lld-toolchain-symlinks-14-r2.ebuild            | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git 
a/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-14-r2.ebuild 
b/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-14-r2.ebuild
new file mode 100644
index 000000000000..ee8671571c75
--- /dev/null
+++ b/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-14-r2.ebuild
@@ -0,0 +1,39 @@
+# 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="multilib-symlinks +native-symlinks"
+
+RDEPEND="
+       sys-devel/lld:${SLOT}
+"
+
+src_install() {
+       use native-symlinks || return
+
+       local chosts=( "${CHOST}" )
+       if use multilib-symlinks; then
+               local abi
+               for abi in $(get_all_abis); do
+                       chosts+=( "$(get_abi_CHOST "${abi}")" )
+               done
+       fi
+
+       local dest=/usr/lib/llvm/${SLOT}/bin
+       dodir "${dest}"
+       dosym ld.lld "${dest}/ld"
+       for chost in "${chosts[@]}"; do
+               dosym ld.lld "${dest}/${chost}-ld"
+       done
+}

Reply via email to