forked from hyrise/hyrise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·81 lines (70 loc) · 3.23 KB
/
install.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/bash
if [[ -z $OPOSSUM_HEADLESS_SETUP ]]; then
read -p 'This script installs the dependencies of Hyrise. It might upgrade already installed packages. Continue? [y|n] ' -n 1 -r < /dev/tty
else
REPLY="y"
fi
echo
if echo $REPLY | grep -E '^[Yy]$' > /dev/null; then
unamestr=$(uname)
if [[ "$unamestr" == 'Darwin' ]]; then
if [ ! -d "/Applications/Xcode.app/" ]; then
echo "You need to install Xcode from the App Store before proceeding"
exit 1
fi
# Needed for proper building under macOS
xcode-select --install
brew --version 2>/dev/null || /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Installing dependencies (this may take a while)..."
if brew update >/dev/null; then
# python2.7 is preinstalled on macOS
# check, for each programme individually with brew, whether it is already installed
# due to brew issues on MacOS after system upgrade
for formula in boost cmake tbb pkg-config readline ncurses sqlite3 parallel libpq; do
# if brew formula is installed
if brew ls --versions $formula > /dev/null; then
continue
fi
if ! brew install $formula; then
echo "Error during brew formula $formula installation."
exit 1
fi
done
if ! brew install llvm --with-toolchain; then
echo "Error during llvm/clang installation."
exit 1
fi
if ! git submodule update --jobs 5 --init --recursive; then
echo "Error during installation."
exit 1
fi
else
echo "Error during installation."
exit 1
fi
elif [[ "$unamestr" == 'Linux' ]]; then
if cat /etc/lsb-release | grep DISTRIB_ID | grep Ubuntu >/dev/null; then
echo "Installing dependencies (this may take a while)..."
if sudo apt-get update >/dev/null; then
boostall=$(apt-cache search --names-only '^libboost1.[0-9]+-all-dev$' | sort | tail -n 1 | cut -f1 -d' ')
sudo apt-get install --no-install-recommends -y clang-6.0 libclang-6.0-dev clang-format-6.0 gcovr python2.7 gcc-7 llvm libnuma-dev libnuma1 libtbb-dev build-essential cmake libreadline-dev libncurses5-dev libsqlite3-dev parallel $boostall libpq-dev &
if ! git submodule update --jobs 5 --init --recursive; then
echo "Error during installation."
exit 1
fi
wait $!
apt=$?
if [ $apt -ne 0 ]; then
echo "Error during installation."
exit 1
fi
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 60 --slave /usr/bin/g++ g++ /usr/bin/g++-7
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-6.0 60 --slave /usr/bin/clang++ clang++ /usr/bin/clang++-6.0
else
echo "Error during installation."
exit 1
fi
fi
fi
fi
exit 0