2020-10-15 21:31:50 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2021-10-09 18:01:27 +08:00
|
|
|
# Licensed to the LF AI & Data foundation 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.
|
|
|
|
|
2022-02-09 14:27:46 +08:00
|
|
|
function install_linux_deps() {
|
|
|
|
if [[ -x "$(command -v apt)" ]]; then
|
2023-06-06 14:06:36 +08:00
|
|
|
# for Ubuntu 20.04
|
2022-11-23 10:39:11 +08:00
|
|
|
sudo apt install -y wget curl ca-certificates gnupg2 \
|
2023-08-30 14:19:00 +08:00
|
|
|
g++ gcc gfortran git make ccache libssl-dev zlib1g-dev zip unzip \
|
2024-06-13 15:27:58 +08:00
|
|
|
clang-format-12 clang-tidy-12 lcov libtool m4 autoconf automake python3 python3-pip \
|
2024-05-17 14:53:37 +08:00
|
|
|
pkg-config uuid-dev libaio-dev libopenblas-dev libgoogle-perftools-dev
|
2022-02-09 14:27:46 +08:00
|
|
|
|
2024-08-02 19:22:15 +08:00
|
|
|
sudo pip3 install conan==1.64.1
|
2022-11-23 10:39:11 +08:00
|
|
|
elif [[ -x "$(command -v yum)" ]]; then
|
2023-02-15 17:16:33 +08:00
|
|
|
# for CentOS devtoolset-11
|
2023-06-06 14:06:36 +08:00
|
|
|
sudo yum install -y epel-release centos-release-scl-rh
|
2022-11-23 10:39:11 +08:00
|
|
|
sudo yum install -y wget curl which \
|
|
|
|
git make automake python3-devel \
|
2023-10-15 20:08:04 +08:00
|
|
|
devtoolset-11-gcc devtoolset-11-gcc-c++ devtoolset-11-gcc-gfortran devtoolset-11-libatomic-devel \
|
2024-05-17 14:53:37 +08:00
|
|
|
llvm-toolset-11.0-clang llvm-toolset-11.0-clang-tools-extra openblas-devel \
|
2023-08-30 14:19:00 +08:00
|
|
|
libaio libuuid-devel zip unzip \
|
2022-11-23 10:39:11 +08:00
|
|
|
ccache lcov libtool m4 autoconf automake
|
2022-02-09 14:27:46 +08:00
|
|
|
|
2024-08-02 19:22:15 +08:00
|
|
|
sudo pip3 install conan==1.64.1
|
2023-02-15 17:16:33 +08:00
|
|
|
echo "source scl_source enable devtoolset-11" | sudo tee -a /etc/profile.d/devtoolset-11.sh
|
|
|
|
echo "source scl_source enable llvm-toolset-11.0" | sudo tee -a /etc/profile.d/llvm-toolset-11.sh
|
|
|
|
echo "export CLANG_TOOLS_PATH=/opt/rh/llvm-toolset-11.0/root/usr/bin" | sudo tee -a /etc/profile.d/llvm-toolset-11.sh
|
|
|
|
source "/etc/profile.d/llvm-toolset-11.sh"
|
2022-02-09 14:27:46 +08:00
|
|
|
else
|
2022-11-23 10:39:11 +08:00
|
|
|
echo "Error Install Dependencies ..."
|
|
|
|
exit 1
|
2022-02-09 14:27:46 +08:00
|
|
|
fi
|
2022-11-23 10:39:11 +08:00
|
|
|
# install cmake
|
2023-08-08 11:15:14 +08:00
|
|
|
cmake_version=$(echo "$(cmake --version | head -1)" | grep -o '[0-9][\.][0-9]*')
|
2023-12-04 18:26:34 +08:00
|
|
|
if [ ! $cmake_version ] || [ `expr $cmake_version \>= 3.26` -eq 0 ]; then
|
|
|
|
echo "cmake version $cmake_version is less than 3.26, wait to installing ..."
|
2024-05-22 11:15:39 +08:00
|
|
|
wget -qO- "https://cmake.org/files/v3.26/cmake-3.26.5-linux-$(uname -m).tar.gz" | sudo tar --strip-components=1 -xz -C /usr/local
|
2023-10-24 17:50:10 +08:00
|
|
|
else
|
2023-08-08 11:15:14 +08:00
|
|
|
echo "cmake version is $cmake_version"
|
|
|
|
fi
|
2024-01-07 20:04:12 +08:00
|
|
|
# install rust
|
|
|
|
if command -v cargo >/dev/null 2>&1; then
|
|
|
|
echo "cargo exists"
|
|
|
|
rustup install 1.73
|
|
|
|
rustup default 1.73
|
|
|
|
else
|
|
|
|
bash -c "curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=1.73 -y" || { echo 'rustup install failed'; exit 1;}
|
|
|
|
source $HOME/.cargo/env
|
|
|
|
fi
|
2022-02-09 14:27:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function install_mac_deps() {
|
2022-11-23 10:39:11 +08:00
|
|
|
sudo xcode-select --install > /dev/null 2>&1
|
2023-11-27 10:06:26 +08:00
|
|
|
brew install boost libomp ninja cmake llvm@15 ccache grep pkg-config zip unzip tbb
|
2022-02-09 14:27:46 +08:00
|
|
|
export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH"
|
|
|
|
brew update && brew upgrade && brew cleanup
|
|
|
|
|
2024-08-02 19:22:15 +08:00
|
|
|
pip3 install conan==1.64.1
|
2023-03-01 19:59:47 +08:00
|
|
|
|
2022-02-09 14:27:46 +08:00
|
|
|
if [[ $(arch) == 'arm64' ]]; then
|
2022-04-26 14:21:46 +08:00
|
|
|
brew install openssl
|
|
|
|
brew install librdkafka
|
2022-02-09 14:27:46 +08:00
|
|
|
fi
|
2023-11-27 10:06:26 +08:00
|
|
|
|
|
|
|
sudo ln -s "$(brew --prefix llvm@15)" "/usr/local/opt/llvm"
|
2024-01-07 20:04:12 +08:00
|
|
|
# install rust
|
|
|
|
if command -v cargo >/dev/null 2>&1; then
|
|
|
|
echo "cargo exists"
|
|
|
|
rustup install 1.73
|
|
|
|
rustup default 1.73
|
|
|
|
else
|
|
|
|
bash -c "curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=1.73 -y" || { echo 'rustup install failed'; exit 1;}
|
|
|
|
source $HOME/.cargo/env
|
|
|
|
fi
|
2022-02-09 14:27:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ! command -v go &> /dev/null
|
|
|
|
then
|
|
|
|
echo "go could not be found, please install it"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
unameOut="$(uname -s)"
|
|
|
|
case "${unameOut}" in
|
|
|
|
Linux*) install_linux_deps;;
|
|
|
|
Darwin*) install_mac_deps;;
|
|
|
|
*) echo "Unsupported OS:${unameOut}" ; exit 0;
|
|
|
|
esac
|
|
|
|
|