install.sh 260 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash -eux

git clone https://github.com/google/protobuf.git /tmp/protobuf
cd /tmp/protobuf
./autogen.sh
./configure
make -j4
make install
ldconfig

mkdir -p /root
git clone https://github.com/UWSysLab/NOPaxos.git /root/nopaxos
cd /root/nopaxos
make -j4