|
| 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