blob: 6e0663ca9db8d57e17e6489eb6f18f2f890358c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="LLVMgold plugin symlink for autoloading"
HOMEPAGE="https://llvm.org/"
SRC_URI=""
LICENSE="public-domain"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="sys-devel/llvm:${PV}[gold]
!sys-devel/llvm:0"
S=${WORKDIR}
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"
}
|