Skip to content

Commit 066cfa4

Browse files
committed
Add wkdev-setup-default-clang script
This allows easily installing and switching between different clang toolchains
1 parent 8133a6c commit 066cfa4

File tree

2 files changed

+73
-4
lines changed

2 files changed

+73
-4
lines changed

images/wkdev_sdk/Containerfile

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

124124
COPY /rootfs/etc/ccache.conf /etc/ccache.conf
125125

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

131133
# Fix Qt6 system packages - missing symlinks in the Ubuntu-provided packages.
132134
RUN export QT_VERSION=$(qmake6 -query QT_VERSION) && \
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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+
min_clang_version=14
13+
max_clang_version=18
14+
15+
init_application "${0}" "Installs and creates symlinks to set default clang executables" container-only
16+
17+
argsparse_use_option "=version:" "The clang version between ${min_clang_version}-${max_clang_version}" "mandatory" "type:uint"
18+
19+
20+
argsparse_usage_description="$(cat <<EOF
21+
<< Purpose >>
22+
23+
Provides an easy way to install and switch between clang toolchains.
24+
25+
<< Examples >>
26+
27+
$ ${application_name} --version=17
28+
EOF
29+
)"
30+
31+
run() {
32+
33+
argsparse_parse_options "${@}"
34+
local version="${program_options["version"]}"
35+
36+
_log_ ""
37+
38+
# Sanity check versions Ubuntu actually has.
39+
if (( ${version} < ${min_clang_version} )) || (( ${version} > ${max_clang_version})); then
40+
_log_ "${version} is not a valid value (between ${min_clang_version}-${max_clang_version})."
41+
exit 1
42+
fi
43+
44+
if [ ! -f "/usr/bin/clang-${version}" ]; then
45+
_log_ "Installing clang toolchain version ${version}"
46+
_log_ ""
47+
if ! sudo apt-get install "clang-tools-${version}" "clangd-${version}" "clang-format-${version}" "clang-tidy-${version}" "lld-${version}" "lldb-${version}"; then
48+
_log_ ""
49+
_log_ "Failed to install clang toolchain"
50+
exit 1
51+
fi
52+
fi
53+
54+
local output_path
55+
if [ "$EUID" -eq 0 ]; then
56+
output_path="/usr/local/bin"
57+
else
58+
output_path="${HOME}/.local/bin"
59+
fi
60+
_log_ "Creating symlinks in ${output_path}"
61+
for binary in /usr/bin/*-"${version}"; do
62+
local binary_name="$(basename ${binary})"
63+
ln --symbolic --force "${binary}" "${output_path}/${binary_name::-3}"
64+
done
65+
}
66+
67+
run "${@}"

0 commit comments

Comments
 (0)