-
环境搭建及编译
1.安装brew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
执行这一步的时候可能会error443 connect报错,则用下面方法安装
/usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install)"
2. 使用brew安装protoc
brew install protobuf
3.安装 automake
brew install automake
brew install libtool
4.将ProtoBuf协议文件编译为OC文件
protoc --proto_path=. --objc_out=. xxxxxx.proto
protoc 为proto的生成指令 后面添加 参数
参数的形式为: --参数命令