blob: 3f64743c570bbd5099c965ca40afbb1eb13b003b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /usr/bin/env bash
set -e
apt-get update
apt-get install -y vim lsb-release wget git software-properties-common gnupg
apt-get install -y gcc g++ make gdb
# git config --global user.email "$GIT_EMAIL"
# git config --global user.name "$GIT_NAME"
source ./install-llvm.bash
source ./install-cmake.bash
source ./install-dotnet.bash
|