-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add scripts/infinity-deps-ubuntu2004.sh
- Loading branch information
Showing
3 changed files
with
83 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo | ||
echo "running script $0" | ||
echo "current working directory : $PWD" | ||
|
||
echo | ||
echo 'step [1/9] : sudo apt update && sudo apt install -y git wget unzip software-properties-common' | ||
echo | ||
sudo apt update && sudo apt install -y git wget unzip software-properties-common | ||
|
||
echo | ||
echo 'step [2/9] : download cmake-3.28.1' | ||
echo 'command: wget https://cmake.org/files/v3.28/cmake-3.28.1-linux-x86_64.tar.gz' | ||
echo | ||
wget https://cmake.org/files/v3.28/cmake-3.28.1-linux-x86_64.tar.gz | ||
|
||
echo | ||
echo 'step [3/9] : install cmake-3.28.1 into /usr/local/bin and /usr/local/share' | ||
echo 'command: tar zxvf cmake-3.28.1-linux-x86_64.tar.gz' | ||
echo 'command: sudo cp -rf cmake-3.28.1-linux-x86_64/bin/* /usr/local/bin && sudo cp -rf cmake-3.28.1-linux-x86_64/share/* /usr/local/share && rm -rf cmake-3.28.1-linux-x86_64' | ||
echo | ||
tar zxvf cmake-3.28.1-linux-x86_64.tar.gz | ||
sudo cp -rf cmake-3.28.1-linux-x86_64/bin/* /usr/local/bin && sudo cp -rf cmake-3.28.1-linux-x86_64/share/* /usr/local/share && rm -rf cmake-3.28.1-linux-x86_64 | ||
|
||
echo | ||
echo 'step [4/9] : download ninja-1.11.1' | ||
echo 'command: wget https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-linux.zip' | ||
echo | ||
wget https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-linux.zip | ||
|
||
echo | ||
echo 'step [5/9] : install ninja-1.11.1 into /usr/local/bin' | ||
echo 'command: unzip ninja-linux.zip && sudo cp ninja /usr/local/bin && rm ninja' | ||
echo | ||
unzip ninja-linux.zip && sudo cp ninja /usr/local/bin && rm ninja | ||
|
||
echo | ||
echo 'step [6/9] : add apt source for llvm-17' | ||
echo 'command: sudo echo -e "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-17 main" > /etc/apt/sources.list.d/llvm17.list' | ||
echo 'command: wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc' | ||
echo | ||
sudo echo -e "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-17 main" > /etc/apt/sources.list.d/llvm17.list | ||
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc | ||
|
||
echo | ||
echo 'step [7/9] : add apt source for g++-13 gcc-13 libstdc++-13-dev libboost1.81-dev liburing-dev' | ||
echo 'command: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test' | ||
echo 'command: sudo add-apt-repository -y ppa:mhier/libboost-latest' | ||
echo 'command: sudo add-apt-repository -y ppa:rhansen/qemu' | ||
echo | ||
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | ||
sudo add-apt-repository -y ppa:mhier/libboost-latest | ||
sudo add-apt-repository -y ppa:rhansen/qemu | ||
|
||
echo | ||
echo "step [8/9] : sudo apt update && sudo apt install -y g++-13 clang-17 clang-tools-17 flex libboost1.81-dev liblz4-dev libevent-dev liburing-dev libthrift-dev" | ||
echo | ||
sudo apt update && sudo apt install -y g++-13 clang-17 clang-tools-17 flex libboost1.81-dev liblz4-dev libevent-dev liburing-dev libthrift-dev | ||
|
||
echo | ||
echo 'step [9/9] : create a symbolic link for clang-scan-deps-17' | ||
echo 'command: sudo ln -s /usr/lib/llvm-17/bin/clang-scan-deps /usr/bin/clang-scan-deps' | ||
echo | ||
sudo ln -s /usr/lib/llvm-17/bin/clang-scan-deps /usr/bin/clang-scan-deps | ||
|
||
echo | ||
echo "script $0 finished" | ||
echo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters