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