Skip to content

Commit 6947e62

Browse files
committed
Add wkdev-setup-default-clang script
This allows easily installing and switching between different clang toolchains
1 parent 3532ae8 commit 6947e62

File tree

2 files changed

+70
-4
lines changed

2 files changed

+70
-4
lines changed

images/wkdev_sdk/Containerfile

+6-4
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,12 @@ COPY /rootfs/usr/bin/podman-host /usr/bin/podman-host
127127

128128
COPY /rootfs/etc/ccache.conf /etc/ccache.conf
129129

130-
# Convenience symlink for clang tools, the VSCode extension doesn't find these by default.
131-
RUN for command in clang clang++ clangd clang-format clang-tidy lld lldb lldb-server lldb-vscode; do \
132-
ln -s "/usr/bin/${command}-18" "/usr/local/bin/${command}"; \
133-
done && ln -s "/usr/bin/lld-18" "/usr/local/bin/ld.lld";
130+
# Convenience symlinks for clang tools, the VSCode extension doesn't find these by default.
131+
# FIXME: Reduce code duplication with `wkdev-set-default-clang`.
132+
RUN for binary in /usr/bin/*-18; do \
133+
local binary_name="$(basename $binary)" \
134+
ln -s "$binary" "/usr/local/bin/${binary_name::-3}" \
135+
done
134136

135137
# Fix Qt6 system packages - missing symlinks in the Ubuntu-provided packages.
136138
RUN export QT_VERSION=$(qmake6 -query QT_VERSION) && \
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
#!/usr/bin/env bash
2+
# Copyright 2024 Igalia S.L.
3+
# SPDX-License: MIT
4+
5+
if [ -f "${WKDEV_SDK}/.wkdev-sdk-root" ]; then
6+
source "${WKDEV_SDK}/utilities/application.sh"
7+
else
8+
echo "Please set \${WKDEV_SDK} to point to the root of the wkdev-sdk checkout."
9+
exit 1
10+
fi
11+
12+
init_application "${0}" "Installs and creates symlinks to set default clang executables" container-only
13+
14+
argsparse_use_option "=version:" "The clang version" "mandatory" "type:uint"
15+
16+
17+
argsparse_usage_description="$(cat <<EOF
18+
<< Purpose >>
19+
20+
Provides an easy way to install and switch between clang toolchains.
21+
22+
<< Examples >>
23+
24+
$ ${application_name} --version=17
25+
EOF
26+
)"
27+
28+
run() {
29+
30+
argsparse_parse_options "${@}"
31+
local version="${program_options["version"]}"
32+
33+
echo ""
34+
35+
# Sanity check versions Ubuntu actually has.
36+
if (( $version < 14 )) || (( $version > 18)); then
37+
echo "$version is not a valid value (between 14-18)."
38+
exit 1
39+
fi
40+
41+
if [ ! -f "/usr/bin/clang-$version" ]; then
42+
echo "Installing clang toolchain version $version"
43+
echo ""
44+
if ! sudo apt-get install "clang-tools-$version" "clangd-$version" "clang-format-$version" "clang-tidy-$version" "lld-$version" "lldb-$version"; then
45+
echo ""
46+
echo "Failed to install clang toolchain"
47+
exit 1
48+
fi
49+
fi
50+
51+
local output_path
52+
if [ "$EUID" -eq 0 ]; then
53+
output_path='/usr/local/bin'
54+
else
55+
output_path="$HOME/.local/bin"
56+
fi
57+
echo "Creating symlinks in $output_path"
58+
for binary in /usr/bin/*-"$version"; do
59+
local binary_name="$(basename $binary)"
60+
ln --symbolic --force "$binary" "${output_path}/${binary_name::-3}"
61+
done
62+
}
63+
64+
run "${@}"

0 commit comments

Comments
 (0)