-
Notifications
You must be signed in to change notification settings - Fork 71
/
buildall.sh
executable file
·301 lines (255 loc) · 12.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
#!/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
if [[ "$DOWNLOAD_CCACHE" -ne 0 ]]; then
download_ccache
fi
# 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
# * Multiple versions are allowed, but versions that are no longer in use
# should be removed.
################################################################################
################################################################################
# Boost
################################################################################
BOOST_VERSION=1.74.0-p1 $SOURCE_DIR/source/boost/build.sh
################################################################################
# Build BZip2
################################################################################
BZIP2_VERSION=1.0.8-p2 $SOURCE_DIR/source/bzip2/build.sh
################################################################################
# Build Python
################################################################################
export BZIP2_VERSION=1.0.8-p2
# For now, provide both Python 2 and 3 until we can switch over to Python 3.
PYTHON_VERSION=2.7.16 $SOURCE_DIR/source/python/build.sh
PYTHON_VERSION=3.7.16 $SOURCE_DIR/source/python/build.sh
PYTHON_VERSION=3.8.18 $SOURCE_DIR/source/python/build.sh
export -n BZIP2_VERSION
################################################################################
# LLVM
################################################################################
# Build LLVM 3.7+ with and without assertions. For LLVM 3.7+, the default is a
# release build with no assertions.
(
LLVM_VERSION=5.0.1-p8 $SOURCE_DIR/source/llvm/build.sh
LLVM_VERSION=5.0.1-asserts-p8 $SOURCE_DIR/source/llvm/build.sh
)
################################################################################
# Build protobuf
################################################################################
PROTOBUF_VERSION=3.14.0 $SOURCE_DIR/source/protobuf/build.sh
# Impala Clang builds hit a micro redefinition compiling error and symbol related
# issue in linking with protobuf 3.14.0. Two patches were created to fix these
# Clang compatibility issues.
# 3.14.0-clangcompat-p2 should be used for Impala Clang builds.
PROTOBUF_VERSION=3.14.0-clangcompat-p2 $SOURCE_DIR/source/protobuf/build.sh
################################################################################
# Build libev
################################################################################
LIBEV_VERSION=4.20-p1 $SOURCE_DIR/source/libev/build.sh
################################################################################
# Build crcutil
################################################################################
CRCUTIL_VERSION=2903870057d2f1f109b245650be29e856dc8b646\
$SOURCE_DIR/source/crcutil/build.sh
################################################################################
# Build ZLib
################################################################################
ZLIB_VERSION=1.2.13 $SOURCE_DIR/source/zlib/build.sh
ZLIB_VERSION=1.3.1 $SOURCE_DIR/source/zlib/build.sh
################################################################################
# Build Cloudflare ZLib
################################################################################
# 9e601a3f37 is latest as of 03/27/2023
CLOUDFLAREZLIB_VERSION=9e601a3f37 $SOURCE_DIR/source/cloudflarezlib/build.sh
# 7aa510344e is latest as of 11/23/2023
CLOUDFLAREZLIB_VERSION=7aa510344e $SOURCE_DIR/source/cloudflarezlib/build.sh
################################################################################
# Build Thrift
# * depends on boost, zlib and openssl
################################################################################
export BOOST_VERSION=1.74.0-p1
export ZLIB_VERSION=1.2.13
export PYTHON_VERSION=2.7.16
THRIFT_VERSION=0.11.0-p5 $SOURCE_DIR/source/thrift/build.sh
THRIFT_VERSION=0.16.0-p7 $SOURCE_DIR/source/thrift/build.sh
export -n BOOST_VERSION
export -n ZLIB_VERSION
export -n PYTHON_VERSION
################################################################################
# gflags
################################################################################
GFLAGS_VERSION=2.2.0-p2 $SOURCE_DIR/source/gflags/build.sh
################################################################################
# Build gperftools
################################################################################
GPERFTOOLS_VERSION=2.8.1-p1 $SOURCE_DIR/source/gperftools/build.sh
GPERFTOOLS_VERSION=2.10 $SOURCE_DIR/source/gperftools/build.sh
GPERFTOOLS_VERSION=2.15 $SOURCE_DIR/source/gperftools/build.sh
################################################################################
# Build glog
################################################################################
GFLAGS_VERSION=2.2.0-p2 GLOG_VERSION=0.3.5-p3 $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=1.14.0 $SOURCE_DIR/source/googletest/build.sh
################################################################################
# Build Snappy
################################################################################
SNAPPY_VERSION=1.1.8 $SOURCE_DIR/source/snappy/build.sh
################################################################################
# Build Lz4
################################################################################
LZ4_VERSION=1.9.3 $SOURCE_DIR/source/lz4/build.sh
LZ4_VERSION=1.9.4 $SOURCE_DIR/source/lz4/build.sh
################################################################################
# Build Zstd
################################################################################
ZSTD_VERSION=1.5.2 $SOURCE_DIR/source/zstd/build.sh
ZSTD_VERSION=1.5.5 $SOURCE_DIR/source/zstd/build.sh
################################################################################
# Build Abseil
################################################################################
ABSEIL_CPP_VERSION=20240116.1 $SOURCE_DIR/source/abseil-cpp/build.sh
################################################################################
# Build re2
################################################################################
RE2_VERSION=20190301 $SOURCE_DIR/source/re2/build.sh
RE2_VERSION=2023-03-01 $SOURCE_DIR/source/re2/build.sh
# Newer versions of RE2 require Abseil
export ABSEIL_CPP_VERSION=20240116.1
RE2_VERSION=2024-03-01 $SOURCE_DIR/source/re2/build.sh
unset ABSEIL_CPP_VERSION
################################################################################
# Build Ldap
################################################################################
OPENLDAP_VERSION=2.4.47 $SOURCE_DIR/source/openldap/build.sh
################################################################################
# Build Avro
################################################################################
AVRO_VERSION=1.7.4-p5 $SOURCE_DIR/source/avro/build.sh
# Build a new version as well
(
export BOOST_VERSION=1.74.0-p1
AVRO_VERSION=1.11.1-p1 $SOURCE_DIR/source/avro/build-cpp.sh
)
################################################################################
# Build Rapidjson
################################################################################
RAPIDJSON_VERSION=1.1.0-p1 $SOURCE_DIR/source/rapidjson/build.sh
################################################################################
# Build Libunwind
################################################################################
LIBUNWIND_VERSION=1.7.2-p1 $SOURCE_DIR/source/libunwind/build.sh
################################################################################
# Build Breakpad
################################################################################
BREAKPAD_VERSION=e09741c609dcd5f5274d40182c5e2cc9a002d5ba-p2 $SOURCE_DIR/source/breakpad/build.sh
################################################################################
# Build Flatbuffers
################################################################################
FLATBUFFERS_VERSION=1.9.0-p1 $SOURCE_DIR/source/flatbuffers/build.sh
################################################################################
# Build Kudu
################################################################################
(
export BOOST_VERSION=1.74.0-p1
export KUDU_VERSION=e742f86f6d
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-p1 $SOURCE_DIR/source/tpc-ds/build.sh
################################################################################
# Build ORC
################################################################################
(
export LZ4_VERSION=1.9.3
export PROTOBUF_VERSION=3.14.0
export SNAPPY_VERSION=1.1.8
export ZLIB_VERSION=1.2.13
export ZSTD_VERSION=1.5.2
ORC_VERSION=1.7.9-p10 $SOURCE_DIR/source/orc/build.sh
)
################################################################################
# CCTZ
################################################################################
CCTZ_VERSION=2.2 $SOURCE_DIR/source/cctz/build.sh
CCTZ_VERSION=2.3 $SOURCE_DIR/source/cctz/build.sh
CCTZ_VERSION=2.4 $SOURCE_DIR/source/cctz/build.sh
################################################################################
# JWT-CPP
################################################################################
JWT_CPP_VERSION=0.5.0 $SOURCE_DIR/source/jwt-cpp/build.sh
JWT_CPP_VERSION=0.6.0 $SOURCE_DIR/source/jwt-cpp/build.sh
JWT_CPP_VERSION=0.7.0 $SOURCE_DIR/source/jwt-cpp/build.sh
################################################################################
# ARROW
################################################################################
ARROW_VERSION=13.0.0 $SOURCE_DIR/source/arrow/build.sh
# CURL
################################################################################
CURL_VERSION=8.10.1 $SOURCE_DIR/source/curl/build.sh
# CALLONCEHACK
################################################################################
CALLONCEHACK_VERSION=1.0.0 $SOURCE_DIR/source/calloncehack/build.sh
################################################################################
# Build hadoop native client libraries
################################################################################
if [[ "$ARCH_NAME" == "aarch64" ]]; then
(
export PROTOBUF_VERSION=3.14.0
export SNAPPY_VERSION=1.1.8
export ZLIB_VERSION=1.2.13
export ZSTD_VERSION=1.5.2
HADOOP_CLIENT_VERSION=3.3.6 $SOURCE_DIR/source/hadoop-client/build.sh
)
fi
# MOLD linker
################################################################################
MOLD_VERSION=2.4.1 $SOURCE_DIR/source/mold/build.sh
# libpfm
################################################################################
LIBPFM_VERSION=4.13.0 $SOURCE_DIR/source/libpfm/build.sh
# GOOGLE BENCHMARK
################################################################################
export LIBPFM_VERSION=4.13.0
GOOGLEBENCHMARK_VERSION=1.8.3 $SOURCE_DIR/source/googlebenchmark/build.sh
unset LIBPFM_VERSION