Created
March 14, 2022 06:08
-
-
Save yangyang5214/c97509c143b7540da2107183a340ace1 to your computer and use it in GitHub Desktop.
protoc install in 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
go to https://github.com/protocolbuffers/protobuf/releases/tag/xxxx # tag | |
unzip protobuf-python-3.18.0.zip | |
cd protobuf-3.18.0 | |
./configure CC=clang CXX=clang++ CXXFLAGS='-std=c++11 -stdlib=libc++ -O3 -g' LDFLAGS='-stdlib=libc++' LIBS="-lc++ -lc++abi" | |
make | |
sudo make install | |
protoc --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment