diff options
author | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-09-30 14:04:18 +0200 |
---|---|---|
committer | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-09-30 14:52:19 +0200 |
commit | 42d221db4971342edd7ebe75152be53741bb0a7b (patch) | |
tree | fb23761477f3f759ba7327845e271227a7a629e3 /binary_tarball/scripts/1_Install_Dependencies.sh | |
parent | v80.0.1-1 (diff) | |
download | librewolf-linux-42d221db4971342edd7ebe75152be53741bb0a7b.tar.gz librewolf-linux-42d221db4971342edd7ebe75152be53741bb0a7b.tar.bz2 librewolf-linux-42d221db4971342edd7ebe75152be53741bb0a7b.zip |
v81.0-2
Diffstat (limited to 'binary_tarball/scripts/1_Install_Dependencies.sh')
-rwxr-xr-x | binary_tarball/scripts/1_Install_Dependencies.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh index 9ff101a..6d88bbb 100755 --- a/binary_tarball/scripts/1_Install_Dependencies.sh +++ b/binary_tarball/scripts/1_Install_Dependencies.sh @@ -53,10 +53,10 @@ apt-get -y -qq install $_DEPENDENCIES; if [[ $CARCH == 'x86_64' ]];then # Installs (non-ancient) clang apt install -y software-properties-common apt-transport-https ca-certificates - apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-9 main" + apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-11 main" wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add apt-get update - apt-get -y install clang-9 libclang-9-dev + apt-get -y install clang-11 libclang-11-dev else apt-get -y install clang-8 libclang-8-dev fi |