forked from cloudera/native-toolchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildall.sh
executable file
·328 lines (289 loc) · 13.5 KB
/
buildall.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
#!/usr/bin/env bash
# Copyright 2015 Cloudera Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# 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.
# Exit on non-true return value
set -e
# Exit on reference to uninitialized variable
set -u
set -o pipefail
# Set up the environment configuration.
source ./init.sh
# Configure the compiler/linker flags, bootstrapping tools if necessary.
source ./init-compiler.sh
################################################################################
# How to add new versions to the toolchain:
#
# * Make sure the build script is ready to build the new version.
# * Find the libary in the list below and create new line that follows the
# pattern: LIBRARYNAME_VERSION=Version $SOURCE_DIR/source/LIBRARYNAME/build.sh
#
# WARNING: Once a library has been rolled out to production, it cannot be
# removed, but only new versions can be added. Make sure that the library
# and version you want to add works as expected.
################################################################################
################################################################################
# Boost
################################################################################
if (( BUILD_HISTORICAL )) ; then
BOOST_VERSION=1.57.0 $SOURCE_DIR/source/boost/build.sh
BOOST_VERSION=1.57.0-p1 $SOURCE_DIR/source/boost/build.sh
BOOST_VERSION=1.57.0-p2 $SOURCE_DIR/source/boost/build.sh
fi
BOOST_VERSION=1.57.0-p3 $SOURCE_DIR/source/boost/build.sh
################################################################################
# Build Python
################################################################################
if [[ ! "$OSTYPE" == "darwin"* ]]; then
PYTHON_VERSION=2.7.11 build_fake_package "python"
PYTHON_VERSION=2.7.10 $SOURCE_DIR/source/python/build.sh
else
PYTHON_VERSION=2.7.10 build_fake_package "python"
fi
################################################################################
# LLVM
################################################################################
# Build LLVM 3.3 with and without asserts.
# For LLVM 3.3, the default is a release build with assertions. The assertions
# are disabled by including "no-asserts" in the version string.
if (( BUILD_HISTORICAL )) ; then
LLVM_VERSION=3.3-p1 $SOURCE_DIR/source/llvm/build.sh
LLVM_VERSION=3.3-no-asserts-p1 $SOURCE_DIR/source/llvm/build.sh
fi
# Build LLVM 3.7+ with and without assertions. For LLVM 3.7+, the default is a
# release build with no assertions.
(
export PYTHON_VERSION=2.7.10
if (( BUILD_HISTORICAL )) ; then
LLVM_VERSION=3.7.0 $SOURCE_DIR/source/llvm/build.sh
LLVM_VERSION=3.8.0 $SOURCE_DIR/source/llvm/build.sh
LLVM_VERSION=3.8.0-p1 $SOURCE_DIR/source/llvm/build.sh
LLVM_VERSION=3.8.0-asserts-p1 $SOURCE_DIR/source/llvm/build.sh
LLVM_VERSION=3.9.1 $SOURCE_DIR/source/llvm/build.sh
LLVM_VERSION=3.9.1-asserts $SOURCE_DIR/source/llvm/build.sh
fi
LLVM_VERSION=5.0.1 $SOURCE_DIR/source/llvm/build.sh
LLVM_VERSION=5.0.1-asserts $SOURCE_DIR/source/llvm/build.sh
)
################################################################################
# SASL
################################################################################
if [[ ! "$OSTYPE" == "darwin"* ]]; then
CYRUS_SASL_VERSION=2.1.23 $SOURCE_DIR/source/cyrus-sasl/build.sh
else
CYRUS_SASL_VERSION=2.1.26 $SOURCE_DIR/source/cyrus-sasl/build.sh
fi
################################################################################
# Build protobuf
################################################################################
PROTOBUF_VERSION=2.6.1 $SOURCE_DIR/source/protobuf/build.sh
################################################################################
# Build libev
################################################################################
LIBEV_VERSION=4.20 $SOURCE_DIR/source/libev/build.sh
################################################################################
# Build crcutil
################################################################################
if (( BUILD_HISTORICAL )) ; then
CRCUTIL_VERSION=440ba7babeff77ffad992df3a10c767f184e946e\
$SOURCE_DIR/source/crcutil/build.sh
fi
CRCUTIL_VERSION=440ba7babeff77ffad992df3a10c767f184e946e-p1\
$SOURCE_DIR/source/crcutil/build.sh
################################################################################
# Build OpenSSL - this is not intended for production use of Impala.
# Libraries that depend on OpenSSL will only use it if PRODUCTION=1.
################################################################################
if (( BUILD_HISTORICAL )); then
OPENSSL_VERSION=1.0.1p $SOURCE_DIR/source/openssl/build.sh
fi
OPENSSL_VERSION=1.0.2l $SOURCE_DIR/source/openssl/build.sh
################################################################################
# Build ZLib
################################################################################
ZLIB_VERSION=1.2.8 $SOURCE_DIR/source/zlib/build.sh
################################################################################
# Build Bison
################################################################################
BISON_VERSION=3.0.4 $SOURCE_DIR/source/bison/build.sh
################################################################################
# Build Thrift
# * depends on bison, boost, zlib and openssl
################################################################################
export BISON_VERSION=3.0.4
export BOOST_VERSION=1.57.0-p3
export ZLIB_VERSION=1.2.8
export OPENSSL_VERSION=1.0.2l
if [[ ! "$OSTYPE" == "darwin"* ]]; then
if (( BUILD_HISTORICAL )); then
THRIFT_VERSION=0.9.0-p2 $SOURCE_DIR/source/thrift/build.sh
THRIFT_VERSION=0.9.0-p4 $SOURCE_DIR/source/thrift/build.sh
THRIFT_VERSION=0.9.0-p5 $SOURCE_DIR/source/thrift/build.sh
# 0.9.0-p6 is a revert of -p5 patch. It doesn't need to be built.
# It is equivalent to p4 and is needed for subsequent patches.
THRIFT_VERSION=0.9.0-p7 $SOURCE_DIR/source/thrift/build.sh
THRIFT_VERSION=0.9.0-p8 $SOURCE_DIR/source/thrift/build.sh
THRIFT_VERSION=0.9.0-p9 $SOURCE_DIR/source/thrift/build.sh
THRIFT_VERSION=0.9.0-p10 $SOURCE_DIR/source/thrift/build.sh
fi
# Required until Python 2.6 compatibility issues have been sorted out with
# thrift-0.9.3.
THRIFT_VERSION=0.9.0-p11 $SOURCE_DIR/source/thrift/build.sh
THRIFT_VERSION=0.9.3-p3 $SOURCE_DIR/source/thrift/build.sh
else
THRIFT_VERSION=0.9.2-p2 $SOURCE_DIR/source/thrift/build.sh
fi
export -n BISON_VERSION
export -n BOOST_VERSION
export -n ZLIB_VERSION
export -n OPENSSL_VERSION
################################################################################
# gflags
################################################################################
if (( BUILD_HISTORICAL )); then
GFLAGS_VERSION=2.0 $SOURCE_DIR/source/gflags/build.sh
fi
GFLAGS_VERSION=2.2.0-p1 $SOURCE_DIR/source/gflags/build.sh
################################################################################
# Build gperftools
################################################################################
if (( BUILD_HISTORICAL )); then
GPERFTOOLS_VERSION=2.0-p1 $SOURCE_DIR/source/gperftools/build.sh
GPERFTOOLS_VERSION=2.3 $SOURCE_DIR/source/gperftools/build.sh
fi
# IMPALA-6414: Required until issues with 2.6.3 have been sorted out.
GPERFTOOLS_VERSION=2.5 $SOURCE_DIR/source/gperftools/build.sh
GPERFTOOLS_VERSION=2.6.3 $SOURCE_DIR/source/gperftools/build.sh
################################################################################
# Build glog
################################################################################
if (( BUILD_HISTORICAL )) ; then
GFLAGS_VERSION=2.0 GLOG_VERSION=0.3.2-p1 $SOURCE_DIR/source/glog/build.sh
GFLAGS_VERSION=2.0 GLOG_VERSION=0.3.2-p2 $SOURCE_DIR/source/glog/build.sh
if [[ ! "$RELEASE_NAME" =~ CentOS.*5\.[[:digit:]] ]]; then
# CentOS 5 has issues with the glog patch, probably autotools is too old.
GFLAGS_VERSION=2.2.0 GLOG_VERSION=0.3.3-p1 $SOURCE_DIR/source/glog/build.sh
fi
fi
GFLAGS_VERSION=2.2.0-p1 GLOG_VERSION=0.3.4-p2 $SOURCE_DIR/source/glog/build.sh
################################################################################
# Build gtest
################################################################################
GTEST_VERSION=1.6.0 $SOURCE_DIR/source/gtest/build.sh
# New versions of gtest are named googletest
GOOGLETEST_VERSION=20151222 $SOURCE_DIR/source/googletest/build.sh
################################################################################
# Build Snappy
################################################################################
if (( BUILD_HISTORICAL )); then
SNAPPY_VERSION=1.0.5 $SOURCE_DIR/source/snappy/build.sh
SNAPPY_VERSION=1.1.3 $SOURCE_DIR/source/snappy/build.sh
fi
SNAPPY_VERSION=1.1.4 $SOURCE_DIR/source/snappy/build.sh
################################################################################
# Build Lz4
################################################################################
if (( BUILD_HISTORICAL )); then
LZ4_VERSION=svn $SOURCE_DIR/source/lz4/build.sh
fi
LZ4_VERSION=1.7.5 $SOURCE_DIR/source/lz4/build.sh
################################################################################
# Build re2
################################################################################
if (( BUILD_HISTORICAL )); then
RE2_VERSION=20130115 $SOURCE_DIR/source/re2/build.sh
fi
RE2_VERSION=20130115-p1 $SOURCE_DIR/source/re2/build.sh
################################################################################
# Build Ldap
################################################################################
OPENLDAP_VERSION=2.4.25 $SOURCE_DIR/source/openldap/build.sh
################################################################################
# Build Avro
################################################################################
if (( BUILD_HISTORICAL )); then
AVRO_VERSION=1.7.4-p3 $SOURCE_DIR/source/avro/build.sh
fi
AVRO_VERSION=1.7.4-p4 $SOURCE_DIR/source/avro/build.sh
################################################################################
# Build Rapidjson
################################################################################
RAPIDJSON_VERSION=0.11 $SOURCE_DIR/source/rapidjson/build.sh
################################################################################
# Build BZip2
################################################################################
if (( BUILD_HISTORICAL )); then
BZIP2_VERSION=1.0.6-p1 $SOURCE_DIR/source/bzip2/build.sh
fi
BZIP2_VERSION=1.0.6-p2 $SOURCE_DIR/source/bzip2/build.sh
################################################################################
# Build GDB
################################################################################
if [[ ! "$RELEASE_NAME" =~ CentOS.*5\.[[:digit:]] ]]; then
GDB_VERSION=7.9.1 $SOURCE_DIR/source/gdb/build.sh
else
GDB_VERSION=7.9.1 build_fake_package "gdb"
fi
################################################################################
# Build Libunwind
################################################################################
if (( BUILD_HISTORICAL )) ; then
LIBUNWIND_VERSION=1.1 $SOURCE_DIR/source/libunwind/build.sh
fi
LIBUNWIND_VERSION=1.1-p1 $SOURCE_DIR/source/libunwind/build.sh
################################################################################
# Build Breakpad
################################################################################
if (( BUILD_HISTORICAL )); then
BREAKPAD_VERSION=20150612-p1 $SOURCE_DIR/source/breakpad/build.sh
fi
BREAKPAD_VERSION=97a98836768f8f0154f8f86e5e14c2bb7e74132e-p2 $SOURCE_DIR/source/breakpad/build.sh
################################################################################
# Build Flatbuffers
################################################################################
FLATBUFFERS_VERSION=1.6.0 $SOURCE_DIR/source/flatbuffers/build.sh
################################################################################
# Build Kudu
################################################################################
(
export BOOST_VERSION=1.57.0-p3
export KUDU_VERSION=0eef8e0
if $SOURCE_DIR/source/kudu/build.sh is_supported_platform; then
$SOURCE_DIR/source/kudu/build.sh build
else
build_fake_package kudu
fi
)
################################################################################
# Build TPC-H
################################################################################
TPC_H_VERSION=2.17.0 $SOURCE_DIR/source/tpc-h/build.sh
################################################################################
# Build TPC-DS
################################################################################
TPC_DS_VERSION=2.1.0 $SOURCE_DIR/source/tpc-ds/build.sh
################################################################################
# Build KRB5
################################################################################
KRB5_VERSION=1.15.1 $SOURCE_DIR/source/krb5/build.sh
################################################################################
# Build ORC
################################################################################
(
export LZ4_VERSION=1.7.5
export PROTOBUF_VERSION=2.6.1
export SNAPPY_VERSION=1.1.4
export ZLIB_VERSION=1.2.8
export ORC_VERSION=1.4.3-p2
$SOURCE_DIR/source/orc/build.sh
)