forked from scylladb/seastar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
install-dependencies.sh
executable file
·176 lines (167 loc) · 3.84 KB
/
install-dependencies.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#!/bin/bash
#
# This file is open source software, licensed to you under the terms
# of the Apache License, Version 2.0 (the "License"). See the NOTICE file
# distributed with this work for additional information regarding copyright
# ownership. You may not use this file except in compliance with the License.
#
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
. /etc/os-release
debian_packages=(
ninja-build
ragel
libhwloc-dev
libnuma-dev
libpciaccess-dev
libcrypto++-dev
libboost-all-dev
libxml2-dev
xfslibs-dev
libgnutls28-dev
liblz4-dev
libsctp-dev
gcc
make
libprotobuf-dev
protobuf-compiler
python3
systemtap-sdt-dev
libtool
cmake
libyaml-cpp-dev
libc-ares-dev
stow
g++
)
# seastar doesn't directly depend on these packages. They are
# needed because we want to link seastar statically and pkg-config
# has no way of saying "static seastar, but dynamic transitive
# dependencies". They provide the various .so -> .so.ver symbolic
# links.
transitive=(libtool-ltdl-devel trousers-devel libidn2-devel libunistring-devel)
redhat_packages=(
hwloc-devel
numactl-devel
libpciaccess-devel
cryptopp-devel
libxml2-devel
xfsprogs-devel
gnutls-devel
lksctp-tools-devel
lz4-devel
gcc
make
protobuf-devel
protobuf-compiler
systemtap-sdt-devel
libtool
cmake
yaml-cpp-devel
c-ares-devel
stow
"${transitive[@]}"
)
fedora_packages=(
"${redhat_packages[@]}"
gcc-c++
ninja-build
ragel
boost-devel
fmt-devel
libubsan
libasan
libatomic
)
centos_packages=(
"${redhat_packages[@]}"
ninja-build
ragel
rh-mongodb36-boost-devel
devtoolset-8-gcc-c++
devtoolset-8-libubsan
devtoolset-8-libasan
devtoolset-8-libatomic
)
arch_packages=(
gcc
ninja
ragel
boost
boost-libs
hwloc
numactl
libpciaccess
crypto++
libxml2
xfsprogs
gnutls
lksctp-tools
lz4
make
protobuf
systemtap
libtool
cmake
yaml-cpp
stow
)
opensuse_packages=(
c-ares-devel
cmake
hwloc-devel
libboost_filesystem1_66_0
libboost_filesystem1_66_0-devel
libboost_program_options1_66_0
libboost_program_options1_66_0-devel
libboost_system1_66_0
libboost_system1_66_0-devel
libboost_test1_66_0
libboost_test1_66_0-devel
libboost_thread1_66_0
libboost_thread1_66_0-devel
libcryptopp-devel
libboost_atomic1_66_0
libboost_atomic1_66_0-devel
libboost_date_time1_66_0
libboost_date_time1_66_0-devel
libboost_chrono1_66_0
libboost_chrono1_66_0-devel
libgnutls-devel
libgnutlsxx28
liblz4-devel
libnuma-devel
lksctp-tools-devel
ninja protobuf-devel
ragel
xfsprogs-devel
yaml-cpp-devel
libtool
stow
)
if [ "$ID" = "ubuntu" ] || [ "$ID" = "debian" ]; then
apt-get install -y "${debian_packages[@]}"
elif [ "$ID" = "centos" ] || [ "$ID" = "fedora" ]; then
if [ "$ID" = "fedora" ]; then
dnf install -y "${fedora_packages[@]}"
else # centos
yum install -y epel-release centos-release-scl scl-utils
yum install -y "${centos_packages[@]}"
fi
elif [ "$ID" = "arch" -o "$ID_LIKE" = "arch" ]; then
pacman -Sy --needed "${arch_packages[@]}"
elif [ "$ID" = "opensuse-leap" ]; then
zypper install -y "${opensuse_packages[@]}"
else
echo "Your system ($ID) is not supported by this script. Please install dependencies manually."
exit 1
fi