diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-07-25 18:09:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-07-25 18:11:21 +0200 |
commit | 4a8709023a687aac4c29401fea0956f69a642043 (patch) | |
tree | c06b5592ebbd2bc9c60ed3ef6c057e264c98d494 /sys-devel/llvmgold | |
parent | sys-devel/llvm-toolchain-symlinks: Add 18.x live ebuilds (diff) | |
download | gentoo-4a8709023a687aac4c29401fea0956f69a642043.tar.gz gentoo-4a8709023a687aac4c29401fea0956f69a642043.tar.bz2 gentoo-4a8709023a687aac4c29401fea0956f69a642043.zip |
sys-devel/llvmgold: Add 18.x live ebuilds
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-devel/llvmgold')
-rw-r--r-- | sys-devel/llvmgold/llvmgold-18.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sys-devel/llvmgold/llvmgold-18.ebuild b/sys-devel/llvmgold/llvmgold-18.ebuild new file mode 100644 index 000000000000..0f6fedb082d3 --- /dev/null +++ b/sys-devel/llvmgold/llvmgold-18.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="LLVMgold plugin symlink for autoloading" +HOMEPAGE="https://llvm.org/" +S=${WORKDIR} + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="" +PROPERTIES="live" + +RDEPEND=" + sys-devel/llvm:${PV}[binutils-plugin] + !sys-devel/llvm:0 +" + +src_install() { + dodir "/usr/${CHOST}/binutils-bin/lib/bfd-plugins" + dosym "../../../../lib/llvm/${PV}/$(get_libdir)/LLVMgold.so" \ + "/usr/${CHOST}/binutils-bin/lib/bfd-plugins/LLVMgold.so" +} |