Fixed boringssl

This commit is contained in:
WolverinDEV 2019-07-02 12:32:53 +02:00
parent c1d2066846
commit 16e93791b2

View File

@ -26,7 +26,8 @@ echo "deb http://archive.debian.org/debian/ wheezy main contrib non-free" > /etc
apt-get update
apt-get install aptitude
aptitude install sudo git wget curl python-software-properties
aptitude install sudo git wget curl python-software-properties realpath
apt-get install golang-go #For boringssl
# Setup GCC-9 from source
aptitude install build-essential
@ -40,6 +41,13 @@ make -j 12
sudo make install
sudo update-alternatives --install /usr/bin/gcc gcc /usr/local/gcc-9.1/bin/gcc-9.1 800 --slave /usr/bin/g++ g++ /usr/local/gcc-9.1/bin/g++-9.1
# Setup go
wget https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz
sudo tar -xvf go1.12.6.linux-amd64.tar.gz
sudo mv go /usr/local
export GOROOT=/usr/local/go
export PATH=$GOROOT/bin:$PATH
#Install cmake
wget https://github.com/Kitware/CMake/releases/download/v3.15.0-rc3/cmake-3.15.0-rc3-Linux-x86_64.sh
chmod +x cmake-3.15.0-rc3-Linux-x86_64.sh