Updated some refs
This commit is contained in:
+1
-1
Submodule client updated: afd3adced9...4606504266
+28
-1
@@ -16,4 +16,31 @@ build_os_type linux
|
||||
-> build_os_arch: [x86|amd64]
|
||||
|
||||
build_os_type win32
|
||||
-> build_os_arch: [x86|amd64]
|
||||
-> build_os_arch: [x86|amd64]
|
||||
|
||||
|
||||
docker setup:
|
||||
|
||||
# General setup
|
||||
echo "deb http://archive.debian.org/debian/ wheezy main contrib non-free" > /etc/apt/sources.list
|
||||
|
||||
apt-get update
|
||||
apt-get install aptitude
|
||||
aptitude install sudo git wget curl python-software-properties
|
||||
|
||||
# Setup GCC-9 from source
|
||||
aptitude install build-essential
|
||||
wget ftp://ftp.fu-berlin.de/unix/languages/gcc/releases/gcc-9.1.0/gcc-9.1.0.tar.gz
|
||||
tar xvf gcc-9.1.0.tar.gz
|
||||
cd gcc-9.1.0
|
||||
mkdir build && cd build
|
||||
./contrib/download_prerequisites
|
||||
../configure -v --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --prefix=/usr/local/gcc-9.1 --enable-checking=release --enable-languages=c,c++ --disable-multilib --program-suffix=-9.1
|
||||
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
|
||||
|
||||
#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
|
||||
./cmake-3.15.0-rc3-Linux-x86_64.sh --prefix=/ --skip-license
|
||||
Vendored
+1
-1
Submodule third_party/CXXTerminal updated: 67fc8e355b...d47b5d14e3
Vendored
+1
-1
Submodule third_party/boringssl updated: c19dfe278c...d6f9c359d2
Reference in New Issue
Block a user