-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.sh
29 lines (20 loc) · 1.07 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
set -ex
CMAKE_URL="https://cmake.org/files/v3.14/cmake-3.14.5-Linux-x86_64.tar.gz"
########################################################################################################################
# CMake
########################################################################################################################
if hash cmake 2> /dev/null; then
version=$(cmake --version)
echo "Found CMake ${version}"
else
wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C /usr
fi
echo "CMake version"
cmake --version
########################################################################################################################
# gcc 493
########################################################################################################################
########################################################################################################################
# gcc 10
########################################################################################################################