install_deps.sh 237 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

cd "${0%/*}"
git submodule update --init --recursive

sudo apt update
sudo apt install libtbb-dev
sudo apt install libcurl4-openssl-dev
sudo apt install libaio-dev

cd third_party/xxHash/
make -j
sudo make install
cd ../..