Forked from rajkrrsingh/Google protobuf installation on Mac
Created
March 9, 2020 11:48
-
-
Save hbprotoss/44a36b11b6033c7de5de95b2c2947310 to your computer and use it in GitHub Desktop.
Steps to Install google protobuf on Mac
This file contains hidden or 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
$wget https://github.com/google/protobuf/releases/download/v2.5.0/protobuf-2.5.0.tar.bz2 | |
$tar xvf protobuf-2.5.0.tar.bz2 | |
$cd protobuf-2.5.0 | |
$./configure CC=clang CXX=clang++ CXXFLAGS='-std=c++11 -stdlib=libc++ -O3 -g' LDFLAGS='-stdlib=libc++' LIBS="-lc++ -lc++abi" | |
$make -j 4 | |
$sudo make install | |
$protoc --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment