forked from ethereum/testeth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
install_deps.sh
executable file
·261 lines (227 loc) · 9.52 KB
/
install_deps.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#!/usr/bin/env sh
#------------------------------------------------------------------------------
# Bash script for installing pre-requisite packages for cpp-ethereum on a
# variety of Linux and other UNIX-derived platforms.
#
# This is an "infrastucture-as-code" alternative to the manual build
# instructions pages which we previously maintained, first as Wiki pages
# and later as readthedocs pages at http://ethdocs.org.
#
# The aim of this script is to simplify things down to the following basic
# flow for all supported operating systems:
#
# - git clone --recursive
# - ./install_deps.sh
# - cmake && make
#
# At the time of writing we are assuming that 'lsb_release' is present for all
# Linux distros, which is not a valid assumption. We will need a variety of
# approaches to actually get this working across all the distros which people
# are using.
#
# See http://unix.stackexchange.com/questions/92199/how-can-i-reliably-get-the-operating-systems-name
# for some more background on this common problem.
#
# TODO - There is no support here yet for cross-builds in any form, only
# native builds. Expanding the functionality here to cover the mobile,
# wearable and SBC platforms covered by doublethink and EthEmbedded would
# also bring in support for Android, iOS, watchOS, tvOS, Tizen, Sailfish,
# Maemo, MeeGo and Yocto.
#
# The documentation for cpp-ethereum is hosted at http://cpp-ethereum.org
#
# ------------------------------------------------------------------------------
# This file is part of cpp-ethereum.
#
# cpp-ethereum is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cpp-ethereum is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>
#
# (c) 2016 cpp-ethereum contributors.
#------------------------------------------------------------------------------
set -e
# Check for 'uname' and abort if it is not available.
uname -v > /dev/null 2>&1 || { echo >&2 "ERROR - cpp-ethereum requires 'uname' to identify the platform."; exit 1; }
case $(uname -s) in
#------------------------------------------------------------------------------
# macOS
#------------------------------------------------------------------------------
Darwin)
case $(sw_vers -productVersion | awk -F . '{print $1"."$2}') in
10.9)
echo "Installing cpp-ethereum dependencies on OS X 10.9 Mavericks."
;;
10.10)
echo "Installing cpp-ethereum dependencies on OS X 10.10 Yosemite."
;;
10.11)
echo "Installing cpp-ethereum dependencies on OS X 10.11 El Capitan."
;;
10.12)
echo "Installing cpp-ethereum dependencies on macOS 10.12 Sierra."
;;
10.13)
echo "Installing cpp-ethereum dependencies on macOS 10.13 High Sierra."
;;
*)
echo "Unsupported macOS version."
echo "We only support Mavericks, Yosemite, El Capitan, Sierra and High Sierra."
exit 1
;;
esac
if [ "$TRAVIS" ]; then
TRAVIS_PACKAGES="ccache"
fi
# Check for Homebrew install and abort if it is not installed.
brew -v > /dev/null 2>&1 || { echo >&2 "ERROR - cpp-ethereum requires a Homebrew install. See http://brew.sh."; exit 1; }
# And finally install all the external dependencies.
brew install \
leveldb \
$TRAVIS_PACKAGES
;;
#------------------------------------------------------------------------------
# FreeBSD
#------------------------------------------------------------------------------
FreeBSD)
echo "Installing cpp-ethereum dependencies on FreeBSD."
echo "ERROR - 'install_deps.sh' doesn't have FreeBSD support yet."
echo "Please let us know if you see this error message, and we can work out what is missing."
echo "At https://gitter.im/ethereum/cpp-ethereum-development."
exit 1
;;
#------------------------------------------------------------------------------
# Linux
#------------------------------------------------------------------------------
Linux)
# Detect if sudo is needed.
if [ $(id -u) != 0 ]; then
SUDO="sudo"
fi
#------------------------------------------------------------------------------
# Arch Linux
#------------------------------------------------------------------------------
if [ -f "/etc/arch-release" ]; then
echo "Installing cpp-ethereum dependencies on Arch Linux."
# The majority of our dependencies can be found in the
# Arch Linux official repositories.
# See https://wiki.archlinux.org/index.php/Official_repositories
$SUDO pacman -Sy --noconfirm \
autoconf \
automake \
gcc \
libtool \
leveldb
elif [ -f "/etc/os-release" ]; then
DISTRO_NAME=$(. /etc/os-release; echo $NAME)
case $DISTRO_NAME in
Debian*)
echo "Installing cpp-ethereum dependencies on Debian Linux."
$SUDO apt-get -q update
$SUDO apt-get -qy install \
build-essential \
libgmp-dev \
libleveldb-dev
;;
Fedora)
echo "Installing cpp-ethereum dependencies on Fedora Linux."
$SUDO dnf -qy install \
gcc-c++ \
leveldb-devel \
gmp-devel
;;
#------------------------------------------------------------------------------
# Ubuntu
#
# TODO - I wonder whether all of the Ubuntu-variants need some special
# treatment?
#
# TODO - We should also test this code on Ubuntu Server, Ubuntu Snappy Core
# and Ubuntu Phone.
#
# TODO - Our Ubuntu build is only working for amd64 and i386 processors.
# It would be good to add armel, armhf and arm64.
# See https://github.com/ethereum/webthree-umbrella/issues/228.
#------------------------------------------------------------------------------
Ubuntu|"Linux Mint")
echo "Installing cpp-ethereum dependencies on Ubuntu."
$SUDO apt-get -q update
$SUDO apt-get install -qy --no-install-recommends --allow-unauthenticated \
build-essential \
libgmp-dev \
libleveldb-dev \
$TRAVIS_PACKAGES
;;
CentOS*|Oracle*|"Red Hat Enterprise Linux"*)
echo "Installing cpp-ethereum dependencies on CentOS."
# Enable EPEL repo that contains leveldb-devel
$SUDO yum -y -q install epel-release
$SUDO yum -y -q install \
make \
gcc-c++ \
leveldb-devel \
gmp-devel
;;
*)
echo "Unsupported Linux distribution: $DISTRO_NAME."
exit 1
;;
esac
elif [ -f "/etc/alpine-release" ]; then
# Alpine Linux
echo "Installing cpp-ethereum dependencies on Alpine Linux."
$SUDO apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
g++ \
make \
leveldb-dev
else
case $(lsb_release -is) in
#------------------------------------------------------------------------------
# OpenSUSE
#------------------------------------------------------------------------------
openSUSE*)
#openSUSE
echo "Installing cpp-ethereum dependencies on openSUSE."
echo "ERROR - 'install_deps.sh' doesn't have openSUSE support yet."
echo "See http://cpp-ethereum.org/building-from-source/linux.html for manual instructions."
echo "If you would like to get 'install_deps.sh' working for openSUSE, that would be fantastic."
echo "See https://github.com/ethereum/webthree-umbrella/issues/552."
exit 1
;;
#------------------------------------------------------------------------------
# Other (unknown) Linux
# Major and medium distros which we are missing would include Mint, CentOS,
# RHEL, Raspbian, Cygwin, OpenWrt, gNewSense, Trisquel and SteamOS.
#------------------------------------------------------------------------------
*)
#other Linux
echo "ERROR - Unsupported or unidentified Linux distro."
echo "See http://cpp-ethereum.org/building-from-source/linux.html for manual instructions."
echo "If you would like to get your distro working, that would be fantastic."
echo "Drop us a message at https://gitter.im/ethereum/cpp-ethereum-development."
exit 1
;;
esac
fi
;;
#------------------------------------------------------------------------------
# Other platform (not Linux, FreeBSD or macOS).
# Not sure what might end up here?
# Maybe OpenBSD, NetBSD, AIX, Solaris, HP-UX?
#------------------------------------------------------------------------------
*)
#other
echo "ERROR - Unsupported or unidentified operating system."
echo "See http://cpp-ethereum.org/building-from-source/ for manual instructions."
echo "If you would like to get your operating system working, that would be fantastic."
echo "Drop us a message at https://gitter.im/ethereum/cpp-ethereum-development."
;;
esac