Created
April 13, 2017 04:28
-
-
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
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
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