Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
bump clang version to 9
Browse files Browse the repository at this point in the history
Signed-off-by: Kumar Gala <[email protected]>
  • Loading branch information
galak committed Dec 9, 2019
1 parent 19a4ab4 commit b08636c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions shippable/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,15 @@ update-alternatives \
gcc --version
echo "================== Successfully Installed gcc ${GCC_VERSION} ==============="

echo "==================== Installing clang 3.9.0 ==================="
wget -nv http://llvm.org/releases/3.9.0/clang+llvm-3.9.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
tar xf clang+llvm-3.9.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
cd clang+llvm-3.9.0-x86_64-linux-gnu-ubuntu-16.04
CLANG_VERSION=9.0.0
echo "==================== Installing clang $CLANG_VERSION ==============="
wget -nv http://releases.llvm.org/"$CLANG_VERSION"/clang+llvm-"$CLANG_VERSION"-x86_64-linux-gnu-ubuntu-18.04.tar.xz
tar xf clang+llvm-"$CLANG_VERSION"-x86_64-linux-gnu-ubuntu-18.04.tar.xz
cd clang+llvm-"$CLANG_VERSION"-x86_64-linux-gnu-ubuntu-18.04
cp -R * /usr/local/
cd ../
clang --version
echo "=============== Successfully Installed clang 3.9.0 ============"
echo "============= Successfully Installed clang $CLANG_VERSION ==========="

echo "=================== Install packages for cpp ======================"

Expand Down

0 comments on commit b08636c

Please sign in to comment.