pikapython/port/linux/install_dependency.sh

12 lines
533 B
Bash
Raw Normal View History

2022-04-08 12:53:26 +02:00
sudo apt install cmake -y
sudo apt install g++ -y
2022-05-02 18:11:12 +08:00
sudo apt install valgrind -y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
2022-01-04 09:06:13 +08:00
git clone https://github.com/google/benchmark.git google_benchmark && cd google_benchmark && cmake -E make_directory "build" && cmake -E chdir "build" cmake -DBENCHMARK_DOWNLOAD_DEPENDENCIES=on -DCMAKE_BUILD_TYPE=Release ../ && cmake --build "build" --config Release && sudo cmake --build "build" --config Release --target install
2022-04-08 12:53:26 +02:00
sudo apt install ninja-build -y
2022-01-04 09:06:13 +08:00
rm google_benchmark -rf