From 16e93791b2227580b9aaf55668d10bc64140afbc Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Tue, 2 Jul 2019 12:32:53 +0200 Subject: [PATCH] Fixed boringssl --- helper.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/helper.txt b/helper.txt index f52a33a..1816615 100644 --- a/helper.txt +++ b/helper.txt @@ -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