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
#!/usr/bin/env bash | |
sudo apt-get update | |
sudo apt-get install build-essential autoconf automake libprotobuf-dev \ | |
protobuf-compiler libncurses5-dev zlib1g-dev libio-pty-perl | |
./autogen.sh | |
protobuf_CFLAGS=" " protobuf_LIBS="-lprotobuf" ./configure --prefix="/usr" | |
sed -i s/LITE_RUNTIME/SPEED/ src/protobufs/*.proto | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment