IOS ProtoBuf 环境搭建

1.先下载 protobuf250-2.5.0.tar.bz2

2. 执行以下命令

cd protobuf-2.5.0/

./configure --prefix=/usr/local/Cellar/protobuf250/2.5.0 --with-zlib

make (如果提示make 找不到就用 Xcode的 /Applications/Xcode.app/Contents/Developer/usr/bin/make)

make install

3.查看protoc 版本号

protoc --version

4.开始生成cpp代码,以下两行任选其一执行即可

protoc --proto_path=./ --objc_out=./ Messenger.proto //OC代码
protoc --proto_path=./ --cpp_out=./ Messenger.proto  //CPP代码


说白了 咱们要的就是 这个protoc bin文件!!!

你可能感兴趣的:(IOS ProtoBuf 环境搭建)