Skip to content

Instantly share code, notes, and snippets.

@unakatsuo
Created April 13, 2017 04:28
Show Gist options
  • Save unakatsuo/77d6ae7e256a785b2c054f224cd6b429 to your computer and use it in GitHub Desktop.
Save unakatsuo/77d6ae7e256a785b2c054f224cd6b429 to your computer and use it in GitHub Desktop.
Build protobuf-2.6.1 static binary similar to github.com/google/protobuf releases
curl -O https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz
tar xf protobuf-2.6.1.tar.gz
cd protobuf-2.6.1
LDFLAGS="-static-libgcc -static-libstdc++" ./configure --disable-shared --prefix=/usr/local/protobuf-2.6.1
cd src
make protoc
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment