-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathdeps.sh
78 lines (70 loc) · 1.84 KB
/
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
#!/usr/bin/env bash
set -x
cd "$(dirname "$0")"
JOBS=8
OS=$1
case "$OS" in
ubuntu)
;;
centos)
;;
none)
;;
*)
echo "Usage: $0 [ubuntu|centos|none]"
exit 1
esac
# Install dependencies
if [ $OS = ubuntu ]; then
echo "Installing dependencies for Ubuntu..."
apt-get update && apt-get install -y --no-install-recommends sudo cmake wget vim curl ca-certificates
update-ca-certificates
sudo apt-get install -y git g++ make libssl-dev libcurl4-openssl-dev
sudo apt-get install -y coreutils libgflags-dev libprotobuf-dev libprotoc-dev protobuf-compiler libleveldb-dev libsnappy-dev
sudo apt-get install -y flex bison
elif [ $OS = centos ]; then
echo "Installing dependencies for CentOS..."
yum install -y sudo cmake wget vim curl ca-certificates
update-ca-trust
sudo yum install -y epel-release centos-release-scl
sudo yum install -y devtoolset-7-gcc-c++ && source /opt/rh/devtoolset-7/enable
sudo yum install -y git make openssl-devel libcurl-devel
sudo yum install -y gflags-devel protobuf-devel protobuf-compiler leveldb-devel
sudo yum install -y flex bison
else
echo "Skipping dependencies installation..."
fi
# Setup git SSL
git config --global http.sslVerify false
# Build boost
cd third_party
if [ ! -e boost ]; then
echo "Cloning boost..."
git clone --recursive https://github.com/boostorg/boost.git
fi
echo "Updating boost..."
cd boost
git checkout master
git pull
git checkout boost-1.76.0
echo "Building boost..."
mkdir -p _build/output
./bootstrap.sh --prefix=./_build/output
./b2 install
cd ..
# Build brpc
if [ ! -e brpc ]; then
echo "Cloning brpc..."
git clone https://github.com/apache/incubator-brpc.git brpc
fi
echo "Updating brpc..."
cd brpc
git checkout master
git pull
git checkout 0.9.7
echo "Building brpc..."
mkdir -p _build
cd _build
cmake ..
make -j$JOBS
cd ../../../