install clang on 16.04
This commit is contained in:
parent
8e1b87d400
commit
440d7d323b
1 changed files with 8 additions and 1 deletions
|
|
@ -3,9 +3,16 @@ printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION -----
|
||||||
|
|
||||||
# Setup Script Variables
|
# Setup Script Variables
|
||||||
# _DEPENDENCIES="mercurial wget git flatpak flatpak-builder";
|
# _DEPENDENCIES="mercurial wget git flatpak flatpak-builder";
|
||||||
_DEPENDENCIES="wget git xvfb xz-utils python3";
|
_DEPENDENCIES="wget git xvfb build-essential xz-utils curl python3";
|
||||||
|
|
||||||
# Installs Dependencies
|
# Installs Dependencies
|
||||||
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
|
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -qq update;
|
DEBIAN_FRONTEND=noninteractive apt-get -qq update;
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES;
|
DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES;
|
||||||
|
|
||||||
|
# Installs (non-ancient) clang
|
||||||
|
|
||||||
|
DEBIAN_FRONTEND=noninteractive apt install -y software-properties-common
|
||||||
|
sudo apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-9 main"
|
||||||
|
DEBIAN_FRONTEND=noninteractive wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add
|
||||||
|
DEBIAN_FRONTEND=noninteractive apt-get -y install clang-9
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue