1. FE vectorized plan code 2. Function register vec function 3. Diff function nullable type 4. New thirdparty code and new thrift struct
452 lines
15 KiB
Bash
452 lines
15 KiB
Bash
#!/bin/bash
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you 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.
|
|
|
|
############################################################
|
|
# You may have to set variables bellow,
|
|
# which are used for compiling thirdparties and palo itself.
|
|
############################################################
|
|
|
|
###################################################
|
|
# DO NOT change variables bellow unless you known
|
|
# what you are doing.
|
|
###################################################
|
|
|
|
# thirdparties will be downloaded and unpacked here
|
|
export TP_SOURCE_DIR=$TP_DIR/src
|
|
|
|
# thirdparties will be installed to here
|
|
export TP_INSTALL_DIR=$TP_DIR/installed
|
|
|
|
# patches for all thirdparties
|
|
export TP_PATCH_DIR=$TP_DIR/patches
|
|
|
|
# header files of all thirdparties will be intalled to here
|
|
export TP_INCLUDE_DIR=$TP_INSTALL_DIR/include
|
|
|
|
# libraries of all thirdparties will be intalled to here
|
|
export TP_LIB_DIR=$TP_INSTALL_DIR/lib
|
|
|
|
# all java libraries will be unpacked to here
|
|
export TP_JAR_DIR=$TP_INSTALL_DIR/lib/jar
|
|
|
|
#####################################################
|
|
# Download url, filename and unpaced filename
|
|
# of all thirdparties
|
|
#####################################################
|
|
|
|
# libevent
|
|
# the last release version of libevent is 2.1.8, which was released on 26 Jan 2017, that is too old.
|
|
# so we use the master version of libevent, which is downloaded on 22 Jun 2018, with commit 24236aed01798303745470e6c498bf606e88724a
|
|
LIBEVENT_DOWNLOAD="https://doris-thirdparty-repo.bj.bcebos.com/thirdparty/libevent-20180622-24236aed01798303745470e6c498bf606e88724a.zip"
|
|
LIBEVENT_NAME=libevent-20180622-24236aed01798303745470e6c498bf606e88724a.zip
|
|
LIBEVENT_SOURCE=libevent-master
|
|
LIBEVENT_MD5SUM="e8b9ba50270ba3b520aec8ff1089f9d7"
|
|
|
|
# openssl
|
|
OPENSSL_DOWNLOAD="https://www.openssl.org/source/old/1.0.2/openssl-1.0.2k.tar.gz"
|
|
OPENSSL_NAME=openssl-1.0.2k.tar.gz
|
|
OPENSSL_SOURCE=openssl-1.0.2k
|
|
OPENSSL_MD5SUM="f965fc0bf01bf882b31314b61391ae65"
|
|
|
|
# thrift
|
|
THRIFT_DOWNLOAD="http://archive.apache.org/dist/thrift/0.9.3/thrift-0.9.3.tar.gz"
|
|
THRIFT_NAME=thrift-0.9.3.tar.gz
|
|
THRIFT_SOURCE=thrift-0.9.3
|
|
THRIFT_MD5SUM="88d667a8ae870d5adeca8cb7d6795442"
|
|
|
|
# llvm
|
|
LLVM_DOWNLOAD="http://releases.llvm.org/3.4.2/llvm-3.4.2.src.tar.gz"
|
|
LLVM_NAME=llvm-3.4.2.src.tar.gz
|
|
LLVM_SOURCE=llvm-3.4.2.src
|
|
LLVM_MD5SUM="a20669f75967440de949ac3b1bad439c"
|
|
|
|
# clang
|
|
CLANG_DOWNLOAD="http://releases.llvm.org/3.4.2/cfe-3.4.2.src.tar.gz"
|
|
CLANG_NAME=cfe-3.4.2.src.tar.gz
|
|
CLANG_SOURCE=cfe-3.4.2.src
|
|
CLANG_MD5SUM="87945973b7c73038871c5f849a818588"
|
|
|
|
# compiler-rt
|
|
COMPILER_RT_DOWNLOAD="http://releases.llvm.org/5.0.0/compiler-rt-5.0.0.src.tar.xz"
|
|
COMPILER_RT_NAME=compiler-rt-5.0.0.src.tar.xz
|
|
COMPILER_RT_SOURCE=compiler-rt-5.0.0.src
|
|
COMPILER_RT_MD5SUM="da735894133589cbc6052c8ef06b1230"
|
|
|
|
# protobuf
|
|
PROTOBUF_DOWNLOAD="https://github.com/google/protobuf/archive/v3.5.1.tar.gz"
|
|
PROTOBUF_NAME=protobuf-3.5.1.tar.gz
|
|
PROTOBUF_SOURCE=protobuf-3.5.1
|
|
PROTOBUF_MD5SUM="710f1a75983092c9b45ecef207236104"
|
|
|
|
# gflags
|
|
GFLAGS_DOWNLOAD="https://github.com/gflags/gflags/archive/v2.2.0.tar.gz"
|
|
GFLAGS_NAME=gflags-2.2.0.tar.gz
|
|
GFLAGS_SOURCE=gflags-2.2.0
|
|
GFLAGS_MD5SUM="b99048d9ab82d8c56e876fb1456c285e"
|
|
|
|
# glog
|
|
GLOG_DOWNLOAD="https://github.com/google/glog/archive/v0.3.3.tar.gz"
|
|
GLOG_NAME=glog-0.3.3.tar.gz
|
|
GLOG_SOURCE=glog-0.3.3
|
|
GLOG_MD5SUM="c1f86af27bd9c73186730aa957607ed0"
|
|
|
|
# gtest
|
|
GTEST_DOWNLOAD="https://github.com/google/googletest/archive/release-1.8.0.tar.gz"
|
|
GTEST_NAME=googletest-release-1.8.0.tar.gz
|
|
GTEST_SOURCE=googletest-release-1.8.0
|
|
GTEST_MD5SUM="16877098823401d1bf2ed7891d7dce36"
|
|
|
|
# snappy
|
|
SNAPPY_DOWNLOAD="https://github.com/google/snappy/archive/1.1.7.tar.gz"
|
|
SNAPPY_NAME=snappy-1.1.7.tar.gz
|
|
SNAPPY_SOURCE=snappy-1.1.7
|
|
SNAPPY_MD5SUM="ee9086291c9ae8deb4dac5e0b85bf54a"
|
|
|
|
# gperftools
|
|
GPERFTOOLS_DOWNLOAD="https://github.com/gperftools/gperftools/archive/gperftools-2.7.tar.gz"
|
|
GPERFTOOLS_NAME=gperftools-2.7.tar.gz
|
|
GPERFTOOLS_SOURCE=gperftools-gperftools-2.7
|
|
GPERFTOOLS_MD5SUM="797e7b7f6663288e2b90ab664861c61a"
|
|
|
|
# zlib
|
|
ZLIB_DOWNLOAD="https://sourceforge.net/projects/libpng/files/zlib/1.2.11/zlib-1.2.11.tar.gz"
|
|
ZLIB_NAME=zlib-1.2.11.tar.gz
|
|
ZLIB_SOURCE=zlib-1.2.11
|
|
ZLIB_MD5SUM="1c9f62f0778697a09d36121ead88e08e"
|
|
|
|
# lz4
|
|
LZ4_DOWNLOAD="https://github.com/lz4/lz4/archive/v1.7.5.tar.gz"
|
|
LZ4_NAME=lz4-1.7.5.tar.gz
|
|
LZ4_SOURCE=lz4-1.7.5
|
|
LZ4_MD5SUM="c9610c5ce97eb431dddddf0073d919b9"
|
|
|
|
# bzip
|
|
BZIP_DOWNLOAD="https://fossies.org/linux/misc/bzip2-1.0.8.tar.gz"
|
|
BZIP_DOWNLOAD="ftp://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz"
|
|
BZIP_NAME=bzip2-1.0.8.tar.gz
|
|
BZIP_SOURCE=bzip2-1.0.8
|
|
BZIP_MD5SUM="67e051268d0c475ea773822f7500d0e5"
|
|
|
|
# lzo2
|
|
LZO2_DOWNLOAD="http://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz"
|
|
LZO2_NAME=lzo-2.10.tar.gz
|
|
LZO2_SOURCE=lzo-2.10
|
|
LZO2_MD5SUM="39d3f3f9c55c87b1e5d6888e1420f4b5"
|
|
|
|
# rapidjson
|
|
RAPIDJSON_DOWNLOAD="https://github.com/Tencent/rapidjson/archive/1a803826f1197b5e30703afe4b9c0e7dd48074f5.zip"
|
|
RAPIDJSON_NAME=rapidjson-1a803826f1197b5e30703afe4b9c0e7dd48074f5.zip
|
|
RAPIDJSON_SOURCE=rapidjson-1a803826f1197b5e30703afe4b9c0e7dd48074f5
|
|
RAPIDJSON_MD5SUM="f2212a77e055a15501477f1e390007ea"
|
|
|
|
# curl
|
|
CURL_DOWNLOAD="https://curl.haxx.se/download/curl-7.54.1.tar.gz"
|
|
CURL_NAME=curl-7.54.1.tar.gz
|
|
CURL_SOURCE=curl-7.54.1
|
|
CURL_MD5SUM="21a6e5658fd55103a90b11de7b2a8a8c"
|
|
|
|
# RE2
|
|
RE2_DOWNLOAD="https://github.com/google/re2/archive/2017-05-01.tar.gz"
|
|
RE2_NAME=re2-2017-05-01.tar.gz
|
|
RE2_SOURCE=re2-2017-05-01
|
|
RE2_MD5SUM="4aa65a0b22edacb7ddcd7e4aec038dcf"
|
|
|
|
# boost
|
|
BOOST_DOWNLOAD="https://boostorg.jfrog.io/artifactory/main/release/1.73.0/source/boost_1_73_0.tar.gz"
|
|
BOOST_NAME=boost_1_73_0.tar.gz
|
|
BOOST_SOURCE=boost_1_73_0
|
|
BOOST_MD5SUM="4036cd27ef7548b8d29c30ea10956196"
|
|
|
|
# mysql
|
|
MYSQL_DOWNLOAD="https://github.com/mysql/mysql-server/archive/mysql-5.7.18.tar.gz"
|
|
MYSQL_NAME=mysql-5.7.18.tar.gz
|
|
MYSQL_SOURCE=mysql-server-mysql-5.7.18
|
|
MYSQL_MD5SUM="58598b10dce180e4d1fbdd7cf5fa68d6"
|
|
|
|
# unix odbc
|
|
ODBC_DOWNLOAD="http://www.unixodbc.org/unixODBC-2.3.7.tar.gz"
|
|
ODBC_NAME=unixODBC-2.3.7.tar.gz
|
|
ODBC_SOURCE=unixODBC-2.3.7
|
|
ODBC_MD5SUM="274a711b0c77394e052db6493840c6f9"
|
|
|
|
# leveldb
|
|
LEVELDB_DOWNLOAD="https://github.com/google/leveldb/archive/v1.20.tar.gz"
|
|
LEVELDB_NAME=leveldb-1.20.tar.gz
|
|
LEVELDB_SOURCE=leveldb-1.20
|
|
LEVELDB_MD5SUM="298b5bddf12c675d6345784261302252"
|
|
|
|
# brpc
|
|
BRPC_DOWNLOAD="https://github.com/apache/incubator-brpc/archive/0.9.7.tar.gz"
|
|
BRPC_NAME=incubator-brpc-0.9.7.tar.gz
|
|
BRPC_SOURCE=incubator-brpc-0.9.7
|
|
BRPC_MD5SUM="a5b79339d139d1c55d39689c0a69bcef"
|
|
|
|
# rocksdb
|
|
ROCKSDB_DOWNLOAD="https://github.com/facebook/rocksdb/archive/v5.14.2.tar.gz"
|
|
ROCKSDB_NAME=rocksdb-5.14.2.tar.gz
|
|
ROCKSDB_SOURCE=rocksdb-5.14.2
|
|
ROCKSDB_MD5SUM="b72720ea3b1e9ca9e4ed0febfef65b14"
|
|
|
|
# librdkafka
|
|
LIBRDKAFKA_DOWNLOAD="https://github.com/edenhill/librdkafka/archive/v0.11.6-RC5.tar.gz"
|
|
LIBRDKAFKA_NAME=librdkafka-0.11.6-RC5.tar.gz
|
|
LIBRDKAFKA_SOURCE=librdkafka-0.11.6-RC5
|
|
LIBRDKAFKA_MD5SUM="2e4ecef2df277e55a0144eb6d185e18a"
|
|
|
|
# zstd
|
|
ZSTD_DOWNLOAD="https://github.com/facebook/zstd/archive/v1.3.7.tar.gz"
|
|
ZSTD_NAME=zstd-1.3.7.tar.gz
|
|
ZSTD_SOURCE=zstd-1.3.7
|
|
ZSTD_MD5SUM="9b89923a360ac85a3b8076fdf495318d"
|
|
|
|
# double-conversion
|
|
DOUBLE_CONVERSION_DOWNLOAD="https://github.com/google/double-conversion/archive/v3.1.1.tar.gz"
|
|
DOUBLE_CONVERSION_NAME=double-conversion-3.1.1.tar.gz
|
|
DOUBLE_CONVERSION_SOURCE=double-conversion-3.1.1
|
|
DOUBLE_CONVERSION_MD5SUM="befd431c3de3f3ed7926ba2845ee609d"
|
|
|
|
# brotli
|
|
BROTLI_DOWNLOAD="https://github.com/google/brotli/archive/v1.0.7.tar.gz"
|
|
BROTLI_NAME="brotli-1.0.7.tar.gz"
|
|
BROTLI_SOURCE="brotli-1.0.7"
|
|
BROTLI_MD5SUM="7b6edd4f2128f22794d0ca28c53898a5"
|
|
|
|
# flatbuffers
|
|
FLATBUFFERS_DOWNLOAD="https://github.com/google/flatbuffers/archive/v1.10.0.tar.gz"
|
|
FLATBUFFERS_NAME=flatbuffers-v1.10.0.tar.gz
|
|
FLATBUFFERS_SOURCE=flatbuffers-1.10.0
|
|
FLATBUFFERS_MD5SUM="f7d19a3f021d93422b0bc287d7148cd2"
|
|
|
|
# arrow
|
|
ARROW_DOWNLOAD="https://github.com/apache/arrow/archive/apache-arrow-0.15.1.tar.gz"
|
|
ARROW_NAME="arrow-apache-arrow-0.15.1.tar.gz"
|
|
ARROW_SOURCE="arrow-apache-arrow-0.15.1"
|
|
ARROW_MD5SUM="7d822863bbbe409794c6cdec3dcb8e6c"
|
|
|
|
# S2
|
|
S2_DOWNLOAD="https://github.com/google/s2geometry/archive/v0.9.0.tar.gz"
|
|
S2_NAME=s2geometry-0.9.0.tar.gz
|
|
S2_SOURCE=s2geometry-0.9.0
|
|
S2_MD5SUM="293552c7646193b8b4a01556808fe155"
|
|
|
|
# BITSHUFFLE
|
|
BITSHUFFLE_DOWNLOAD="https://github.com/kiyo-masui/bitshuffle/archive/0.3.5.tar.gz"
|
|
BITSHUFFLE_NAME=bitshuffle-0.3.5.tar.gz
|
|
BITSHUFFLE_SOURCE=bitshuffle-0.3.5
|
|
BITSHUFFLE_MD5SUM="2648ec7ccd0b896595c6636d926fc867"
|
|
|
|
# CROARINGBITMAP
|
|
CROARINGBITMAP_DOWNLOAD="https://github.com/RoaringBitmap/CRoaring/archive/v0.2.60.tar.gz"
|
|
CROARINGBITMAP_NAME=CRoaring-0.2.60.tar.gz
|
|
CROARINGBITMAP_SOURCE=CRoaring-0.2.60
|
|
CROARINGBITMAP_MD5SUM="29602918e6890ffdeed84cb171857046"
|
|
|
|
# fmt
|
|
FMT_DOWNLOAD="https://github.com/fmtlib/fmt/archive/7.1.3.tar.gz"
|
|
FMT_NAME="fmt-7.1.3.tar.gz"
|
|
FMT_SOURCE="fmt-7.1.3"
|
|
FMT_MD5SUM="2522ec65070c0bda0ca288677ded2831"
|
|
|
|
# parallel-hashmap
|
|
PARALLEL_HASHMAP_DOWNLOAD="https://github.com/greg7mdp/parallel-hashmap/archive/refs/tags/1.33.tar.gz"
|
|
PARALLEL_HASHMAP_NAME="parallel-hashmap-1.33.tar.gz"
|
|
PARALLEL_HASHMAP_SOURCE="parallel-hashmap-1.33"
|
|
PARALLEL_HASHMAP_MD5SUM="7626b5215f745c4ce59b5a4e41d16235"
|
|
|
|
# ORC
|
|
ORC_DOWNLOAD="https://archive.apache.org/dist/orc/orc-1.5.8/orc-1.5.8.tar.gz"
|
|
ORC_NAME=orc-1.5.8.tar.gz
|
|
ORC_SOURCE=orc-1.5.8
|
|
ORC_MD5SUM="2318b0a8233c8833b3a6cfd771c60883"
|
|
|
|
# jemalloc
|
|
JEMALLOC_DOWNLOAD="https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2"
|
|
JEMALLOC_NAME="jemalloc-5.2.1.tar.bz2"
|
|
JEMALLOC_SOURCE="jemalloc-5.2.1"
|
|
JEMALLOC_MD5SUM="3d41fbf006e6ebffd489bdb304d009ae"
|
|
|
|
# CCTZ
|
|
CCTZ_DOWNLOAD="https://github.com/google/cctz/archive/v2.3.tar.gz"
|
|
CCTZ_NAME="cctz-2.3.tar.gz"
|
|
CCTZ_SOURCE="cctz-2.3"
|
|
CCTZ_MD5SUM="209348e50b24dbbdec6d961059c2fc92"
|
|
|
|
# datatables, bootstrap 3 and jQuery 3
|
|
# The origin download url is always changing: https://datatables.net/download/builder?bs-3.3.7/jq-3.3.1/dt-1.10.25
|
|
# So we put it in our own http server.
|
|
# If someone can offer an official url for DataTables, please update this.
|
|
DATATABLES_DOWNLOAD="https://doris-thirdparty-repo.bj.bcebos.com/thirdparty/DataTables.zip"
|
|
DATATABLES_NAME="DataTables.zip"
|
|
DATATABLES_SOURCE="DataTables-1.10.25"
|
|
DATATABLES_MD5SUM="c8fd73997c9871e213ee4211847deed5"
|
|
|
|
# bootstrap table js
|
|
BOOTSTRAP_TABLE_JS_DOWNLOAD="https://unpkg.com/bootstrap-table@1.17.1/dist/bootstrap-table.min.js"
|
|
BOOTSTRAP_TABLE_JS_NAME="bootstrap-table.min.js"
|
|
BOOTSTRAP_TABLE_JS_FILE="bootstrap-table.min.js"
|
|
BOOTSTRAP_TABLE_JS_MD5SUM="6cc9c41eaf7e81e54e220061cc9c0432"
|
|
|
|
# bootstrap table css
|
|
BOOTSTRAP_TABLE_CSS_DOWNLOAD="https://unpkg.com/bootstrap-table@1.17.1/dist/bootstrap-table.min.css"
|
|
BOOTSTRAP_TABLE_CSS_NAME="bootstrap-table.min.css"
|
|
BOOTSTRAP_TABLE_CSS_FILE="bootstrap-table.min.css"
|
|
BOOTSTRAP_TABLE_CSS_MD5SUM="23389d4456da412e36bae30c469a766a"
|
|
|
|
# aws-c-common
|
|
AWS_C_COMMON_DOWNLOAD="https://github.com/awslabs/aws-c-common/archive/v0.4.63.tar.gz"
|
|
AWS_C_COMMON_NAME="aws-c-common-0.4.63.tar.gz"
|
|
AWS_C_COMMON_SOURCE="aws-c-common-0.4.63"
|
|
AWS_C_COMMON_MD5SUM="8298e00a0fb64779b7cf660592d50ab6"
|
|
|
|
# aws-c-event-stream
|
|
AWS_C_EVENT_STREAM_DOWNLOAD="https://github.com/awslabs/aws-c-event-stream/archive/v0.2.6.tar.gz"
|
|
AWS_C_EVENT_STREAM_NAME="aws-c-event-stream-0.2.6.tar.gz"
|
|
AWS_C_EVENT_STREAM_SOURCE="aws-c-event-stream-0.2.6"
|
|
AWS_C_EVENT_STREAM_MD5SUM="fceedde198ddbf38ffdaed08d1435f7f"
|
|
|
|
# aws-checksums
|
|
AWS_CHECKSUMS_DOWNLOAD="https://github.com/awslabs/aws-checksums/archive/v0.1.10.tar.gz"
|
|
AWS_CHECKSUMS_NAME="aws-checksums-0.1.10.tar.gz"
|
|
AWS_CHECKSUMS_SOURCE="aws-checksums-0.1.10"
|
|
AWS_CHECKSUMS_MD5SUM="2383c66f6250fa0238edbd1d779b49d3"
|
|
|
|
# aws-c-io
|
|
AWS_C_IO_DOWNLOAD="https://github.com/awslabs/aws-c-io/archive/v0.7.0.tar.gz"
|
|
AWS_C_IO_NAME="aws-c-io-0.7.0.tar.gz"
|
|
AWS_C_IO_SOURCE="aws-c-io-0.7.0"
|
|
AWS_C_IO_MD5SUM="b95a6f9d20500727231dd726c957276b"
|
|
|
|
# aws-s2n
|
|
AWS_S2N_DOWNLOAD="https://github.com/awslabs/s2n/archive/v0.10.0.tar.gz"
|
|
AWS_S2N_NAME="s2n-0.10.0.tar.gz"
|
|
AWS_S2N_SOURCE="s2n-tls-0.10.0"
|
|
AWS_S2N_MD5SUM="345aa5d2f9e82347bb3e568c22104d0e"
|
|
|
|
# aws-c-cal
|
|
AWS_C_CAL_DOWNLOAD="https://github.com/awslabs/aws-c-cal/archive/v0.4.5.tar.gz"
|
|
AWS_C_CAL_NAME="aws-c-cal-0.4.5.tar.gz"
|
|
AWS_C_CAL_SOURCE="aws-c-cal-0.4.5"
|
|
AWS_C_CAL_MD5SUM="317f3dbafae551a0fc7d70f31434e216"
|
|
|
|
# aws sdk
|
|
AWS_SDK_DOWNLOAD="https://github.com/aws/aws-sdk-cpp/archive/1.8.108.tar.gz"
|
|
AWS_SDK_NAME="aws-sdk-cpp-1.8.108.tar.gz"
|
|
AWS_SDK_SOURCE="aws-sdk-cpp-1.8.108"
|
|
AWS_SDK_MD5SUM="76d8855406e7da61f1f996c11c0b93d7"
|
|
|
|
# tsan_header
|
|
TSAN_HEADER_DOWNLOAD="https://gcc.gnu.org/git/?p=gcc.git;a=blob_plain;f=libsanitizer/include/sanitizer/tsan_interface_atomic.h;hb=refs/heads/releases/gcc-7"
|
|
TSAN_HEADER_NAME="tsan_interface_atomic.h"
|
|
TSAN_HEADER_FILE="tsan_interface_atomic.h"
|
|
TSAN_HEADER_MD5SUM="d72679bea167d6a513d959f5abd149dc"
|
|
|
|
# lzma
|
|
LZMA_DOWNLOAD="https://github.com/kobolabs/liblzma/archive/refs/heads/master.zip"
|
|
LZMA_NAME="liblzma-master.zip"
|
|
LZMA_SOURCE="liblzma-master"
|
|
LZMA_MD5SUM="ef11f2fbbfa6893b629f207a32bf730e"
|
|
|
|
# xml2
|
|
XML2_DOWNLOAD="https://gitlab.gnome.org/GNOME/libxml2/-/archive/v2.9.10/libxml2-v2.9.10.tar.gz"
|
|
XML2_NAME="libxml2-v2.9.10.tar.gz"
|
|
XML2_SOURCE="libxml2-v2.9.10"
|
|
XML2_MD5SUM="b18faee9173c3378c910f6d7d1493115"
|
|
|
|
# gsasl
|
|
GSASL_DOWNLOAD="https://ftp.gnu.org/gnu/gsasl/libgsasl-1.10.0.tar.gz"
|
|
GSASL_NAME="libgsasl-1.10.0.tar.gz"
|
|
GSASL_SOURCE="libgsasl-1.10.0"
|
|
GSASL_MD5SUM="9c8fc632da4ce108fb7581b33de2a5ce"
|
|
|
|
# hdfs3
|
|
HDFS3_DOWNLOAD="https://github.com/ClickHouse-Extras/libhdfs3/archive/refs/heads/master.zip"
|
|
HDFS3_NAME="libhdfs3-master.zip"
|
|
HDFS3_SOURCE="libhdfs3-master"
|
|
HDFS3_MD5SUM="9e46a16009cf86b5e187d302b3582628"
|
|
|
|
#libdivide
|
|
LIBDIVIDE_DOWNLOAD="https://github.com/ridiculousfish/libdivide/archive/refs/tags/v4.0.0.tar.gz"
|
|
LIBDIVIDE_NAME="libdivide-4.0.0.tar.gz"
|
|
LIBDIVIDE_SOURCE="libdivide-4.0.0"
|
|
LIBDIVIDE_MD5SUM="71b99d499b9a5effd0fb2e249622b017"
|
|
|
|
#pdqsort
|
|
PDQSORT_DOWNLOAD="http://ftp.cise.ufl.edu/ubuntu/pool/universe/p/pdqsort/pdqsort_0.0.0+git20180419.orig.tar.gz"
|
|
PDQSORT_NAME="pdqsort.tar.gz"
|
|
PDQSORT_SOURCE="pdqsort-0.0.0+git20180419"
|
|
PDQSORT_MD5SUM="39261c3e7b40aa7505662fac29f22d20"
|
|
# all thirdparties which need to be downloaded is set in array TP_ARCHIVES
|
|
export TP_ARCHIVES="LIBEVENT
|
|
OPENSSL
|
|
THRIFT
|
|
LLVM
|
|
CLANG
|
|
COMPILER_RT
|
|
PROTOBUF
|
|
GFLAGS
|
|
GLOG
|
|
GTEST
|
|
RAPIDJSON
|
|
SNAPPY
|
|
GPERFTOOLS
|
|
ZLIB
|
|
LZ4
|
|
BZIP
|
|
LZO2
|
|
CURL
|
|
RE2
|
|
BOOST
|
|
MYSQL
|
|
ODBC
|
|
LEVELDB
|
|
BRPC
|
|
ROCKSDB
|
|
LIBRDKAFKA
|
|
FLATBUFFERS
|
|
ARROW
|
|
BROTLI
|
|
DOUBLE_CONVERSION
|
|
ZSTD
|
|
S2
|
|
BITSHUFFLE
|
|
CROARINGBITMAP
|
|
FMT
|
|
PARALLEL_HASHMAP
|
|
ORC
|
|
JEMALLOC
|
|
CCTZ
|
|
DATATABLES
|
|
BOOTSTRAP_TABLE_JS
|
|
BOOTSTRAP_TABLE_CSS
|
|
TSAN_HEADER
|
|
AWS_C_COMMON
|
|
AWS_C_EVENT_STREAM
|
|
AWS_C_IO
|
|
AWS_C_CAL
|
|
AWS_C_IO
|
|
AWS_CHECKSUMS
|
|
AWS_S2N
|
|
AWS_SDK
|
|
LZMA
|
|
XML2
|
|
GSASL
|
|
HDFS3
|
|
LIBDIVIDE
|
|
PDQSORT"
|
|
|