美文网首页
protobuf macosx 安装

protobuf macosx 安装

作者: 云上听风 | 来源:发表于2018-03-24 05:47 被阅读0次
    1. 使用brew install protobuf失败,转而使用下载源码安装的方式
    2. https://github.com/google/protobuf/releases 找到最新5.3.4版本下载
    3. 安装
    cd protobuf
    ./autogen.sh
    ./configure
    make
    sudo make install
    

    使用protoc --version查看是否为对应版本

    1. 必须安装
    sudo chmod 777 ./autogen.sh
    brew install automake libtool
    
    1. 根据proto文件生成pb文件
      protoc --descriptor_set_out Person.pb Person.proto

    相关文章

      网友评论

          本文标题:protobuf macosx 安装

          本文链接:https://www.haomeiwen.com/subject/oxnfcftx.html