forked from Tencent/plato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
3rdtools.sh
executable file
·219 lines (184 loc) · 6.64 KB
/
3rdtools.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
#!/bin/bash
me=`basename "$0"`
rootdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
sourceroot="${rootdir}/.downloads"
function clean_exec {
cmd=$*
eval $cmd
retcode=$?
if [ $retcode -ne 0 ]; then
echo "'${cmd}' exec failed with code $retcode, abort install process!"
exit 255
fi
}
function show_help {
echo "usage: ${me} <install|distclean>"
}
function install {
# create temporary dir to hold source code
mkdir -p ${sourceroot}
pushd ${sourceroot}
## boost
if [ ! -f boost_1_68_0.tar.gz ]; then
clean_exec wget -O boost_1_68_0.tar.gz https://boostorg.jfrog.io/artifactory/main/release/1.68.0/source/boost_1_68_0.tar.gz
fi
clean_exec rm -rf boost_1_68_0
clean_exec tar vxzf boost_1_68_0.tar.gz
pushd boost_1_68_0
clean_exec ./bootstrap.sh --without-libraries=python,contract,context,coroutine,fiber,graph,graph_parallel,mpi,wave,log,test,signals,stacktrace,timer --prefix=${rootdir}/3rd/boost_1_68_0
clean_exec ./b2 -j8 cxxflags=-fPIC cflags=-fPIC variant=release link=static -a --prefix=${rootdir}/3rd/boost_1_68_0 -j$(nproc) install
popd
pushd ${rootdir}/3rd
clean_exec ln -nsf boost_1_68_0 boost
clean_exec cp ../build_tools/BUILD_boost ./boost/BUILD
popd
## gflags
if [ ! -f gflags-2.2.1.tar.gz ]; then
clean_exec wget -O gflags-2.2.1.tar.gz https://github.com/gflags/gflags/archive/v2.2.1.tar.gz
fi
clean_exec rm -rf gflags-2.2.1
clean_exec tar vxzf gflags-2.2.1.tar.gz
pushd gflags-2.2.1
mkdir -p tmp_build
pushd tmp_build
clean_exec CXXFLAGS="-fPIC" cmake .. -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON -DCMAKE_INSTALL_PREFIX=${rootdir}/3rd/gflags-2.2.1
clean_exec make
clean_exec make install
popd
popd
pushd ${rootdir}/3rd
clean_exec ln -nsf gflags-2.2.1 gflags
clean_exec cp ../build_tools/BUILD_gflags ./gflags/BUILD
popd
## libunwind
if [ ! -f libunwind-1.3.1.tar.gz ]; then
clean_exec wget https://github.com/libunwind/libunwind/releases/download/v1.3.1/libunwind-1.3.1.tar.gz
fi
clean_exec rm -rf libunwind-1.3.1
clean_exec tar vxzf libunwind-1.3.1.tar.gz
pushd libunwind-1.3.1
clean_exec ./configure --with-pic CFLAGS=-g --with-pic --disable-shared --enable-static --disable-documentation --disable-coredump --disable-ptrace --disable-setjmp --disable-tests --disable-debug --disable-minidebuginfo --disable-msabi-support --prefix=${rootdir}/3rd/libunwind-1.3.1
clean_exec make
clean_exec make install
popd
pushd ${rootdir}/3rd
clean_exec ln -nsf libunwind-1.3.1 libunwind
clean_exec cp ../build_tools/BUILD_libunwind ./libunwind/BUILD
popd
## glog
if [ ! -f glog-0.4.0.tar.gz ]; then
clean_exec wget -O glog-0.4.0.tar.gz https://github.com/google/glog/archive/v0.4.0.tar.gz
fi
clean_exec rm -rf glog-0.4.0
clean_exec tar vxzf glog-0.4.0.tar.gz
pushd glog-0.4.0
clean_exec ./autogen.sh
clean_exec CXXFLAGS='-fPIC' CFLAGS='-fPIC' LDFLAGS="-L${rootdir}/3rd/libunwind/lib" CPPFLAGS="-I${rootdir}/3rd/libunwind/include" ./configure --enable-shared=no --enable-static=yes --with-gflags=${rootdir}/3rd/gflags-2.2.1 --prefix=${rootdir}/3rd/glog-0.4.0
clean_exec GFLAGS_LIBS='' make
clean_exec make install
popd
pushd ${rootdir}/3rd
clean_exec ln -nsf glog-0.4.0 glog
clean_exec cp ../build_tools/BUILD_glog ./glog/BUILD
popd
## googletest
if [ ! -f googletest-1.8.1.tar.gz ]; then
clean_exec wget -O googletest-1.8.1.tar.gz https://github.com/google/googletest/archive/release-1.8.1.tar.gz
fi
clean_exec tar vxzf googletest-1.8.1.tar.gz -C ${rootdir}/3rd
pushd ${rootdir}/3rd
clean_exec ln -nsf googletest-release-1.8.1 googletest
popd
## yas
if [ ! -f yas-7.0.2.tar.gz ]; then
clean_exec wget -O yas-7.0.2.tar.gz https://github.com/niXman/yas/archive/7.0.2.tar.gz
fi
clean_exec tar vxzf yas-7.0.2.tar.gz -C ${rootdir}/3rd
pushd ${rootdir}/3rd
clean_exec ln -nsf yas-7.0.2 yas
clean_exec cp ../build_tools/BUILD_yas ./yas/BUILD
popd
## sparsehash
if [ ! -f sparsehash-2.0.3.tar.gz ]; then
clean_exec wget -O sparsehash-2.0.3.tar.gz https://github.com/sparsehash/sparsehash/archive/sparsehash-2.0.3.tar.gz
fi
clean_exec rm -rf sparsehash-sparsehash-2.0.3
clean_exec tar vxzf sparsehash-2.0.3.tar.gz
pushd sparsehash-sparsehash-2.0.3
clean_exec ./configure --prefix=${rootdir}/3rd/sparsehash-2.0.3
clean_exec make
clean_exec make install
popd
pushd ${rootdir}/3rd
clean_exec ln -nsf sparsehash-2.0.3 sparsehash
clean_exec cp ../build_tools/BUILD_sparsehash ./sparsehash/BUILD
popd
## jni TODO
## hadoop TODO
# if [ ! -f release-2.7.4.tar.gz ]; then
# clean_exec wget https://github.com/apache/hadoop/archive/rel/release-2.7.4.tar.gz
# fi
# clean_exec tar vxzf release-2.7.4.tar.gz
#
# pushd hadoop-rel-release-2.7.4
# mvn package -Pdist,native -DskipTests -Dtar
# popd
## jemalloc
if [ ! -f jemalloc.5.2.0.tar.gz ]; then
clean_exec wget -O jemalloc.5.2.0.tar.gz https://github.com/jemalloc/jemalloc/archive/5.2.0.tar.gz
fi
clean_exec rm -rf jemalloc-5.2.0
clean_exec tar vxzf jemalloc.5.2.0.tar.gz
pushd jemalloc-5.2.0
clean_exec ./autogen.sh
clean_exec CXXFLAGS='-fPIC' CFLAGS='-fPIC' ./configure --enable-shared=no --enable-static=yes --prefix=${rootdir}/3rd/jemalloc-5.2.0
clean_exec make
clean_exec make install
popd
pushd ${rootdir}/3rd
clean_exec ln -nsf jemalloc-5.2.0 jemalloc
clean_exec cp ../build_tools/BUILD_jemalloc ./jemalloc/BUILD
popd
## mpich
if [ ! -f mpich-3.2.1.tar.gz ]; then
clean_exec wget -O mpich-3.2.1.tar.gz http://www.mpich.org/static/downloads/3.2.1/mpich-3.2.1.tar.gz
fi
clean_exec rm -rf mpich-3.2.1
clean_exec tar vxzf mpich-3.2.1.tar.gz
pushd mpich-3.2.1
clean_exec ./configure --with-pic --enable-static --disable-shared --disable-fortran --disable-mpi-fortran --enable-mpi-thread-mutliple --prefix=${rootdir}/3rd/mpich-3.2.1
clean_exec make -j$(nproc)
clean_exec make install
popd
pushd ${rootdir}/3rd
clean_exec ln -nsf mpich-3.2.1 mpich
popd
popd
echo "build 3rd done, you can remove .downloads now."
}
function distclean {
pushd ${rootdir}/3rd
clean_exec rm boost boost_1_68_0 -rf
clean_exec rm gflags gflags-2.2.1 -rf
clean_exec rm libunwind libunwind-1.3.1 -rf
clean_exec rm glog glog-0.4.0 -rf
clean_exec rm googletest googletest-release-1.8.1 -rf
clean_exec rm yas yas-7.0.2 -rf
clean_exec rm sparsehash sparsehash-2.0.3 -rf
clean_exec rm jemalloc jemalloc-5.2.0 -rf
clean_exec rm mpich mpich-3.2.1 -rf
popd
rm ${sourceroot} -rf
echo "distclean 3rd done!"
}
if [ x$1 != x ]; then
if [ $1 = "install" ]; then
install; exit 0
elif [ $1 = "distclean" ]; then
distclean; exit 0
else
show_help; exit 1
fi
else
show_help; exit 1
fi