Skip to content

Instantly share code, notes, and snippets.

@yangyang5214
Created March 14, 2022 06:08
Show Gist options
  • Save yangyang5214/c97509c143b7540da2107183a340ace1 to your computer and use it in GitHub Desktop.
Save yangyang5214/c97509c143b7540da2107183a340ace1 to your computer and use it in GitHub Desktop.
protoc install in mac
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