Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/qq_mem/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ git clone -b v1.7.x https://github.com/grpc/grpc
cd grpc
git submodule update --init

make
make -j$(proc)
sudo make install

# install protobuf
cd third_party/protobuf
./autogen.sh
./configure
make
make -j$(proc)
sudo make install

# This is required to run performance benchmarks
Expand All @@ -41,7 +41,7 @@ wget https://github.com/google/glog/archive/v0.3.5.tar.gz
tar xf v0.3.5.tar.gz
cd glog-0.3.5
./configure
make
make -j$(proc)
sudo make install


Expand Down