blob: 6cce67ad521073db519e6266a84e93086a000532 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit crossdev
DESCRIPTION="Symlinks to a Clang crosscompiler"
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:LLVM"
SRC_URI=""
S=${WORKDIR}
LICENSE="public-domain"
SLOT="${PV}"
KEYWORDS=""
PROPERTIES="live"
RDEPEND="
sys-devel/clang:${SLOT}
"
src_install() {
local llvm_path="${EPREFIX}/usr/lib/llvm/${SLOT}"
into "${llvm_path}"
for exe in "clang" "clang++" "clang-cpp"; do
newbin - "${CTARGET}-${exe}" <<-EOF
#!/bin/sh
exec ${exe}-${SLOT} --no-default-config --config="/etc/clang/cross/${CTARGET}.cfg" \${@}
EOF
done
local tools=(
${CTARGET}-clang-${SLOT}:${CTARGET}-clang
${CTARGET}-clang-cpp-${SLOT}:${CTARGET}-clang-cpp
${CTARGET}-clang++-${SLOT}:${CTARGET}-clang++
)
local t
for t in "${tools[@]}"; do
dosym "${t#*:}" "${llvm_path}/bin/${t%:*}"
done
}
|