up
100
作者 jokin 2016-09-22 11:02:30
写了0文章0获得了0条评论
暂无说说 · 评论
Mac如何安装protobuf
字数·545 评论0 喜欢0 转发0

Mac下安装protobuf的简单教程,不同时期,安装方式可能不一样,现在的已经非常简单

目录

下载源码

git clone https://github.com/google/protobuf.git

编译

cd protobuf
./autogen.sh
./configure
make

安装

make install

查看

protoc --version

一如既往的configure、make、make install。

旧版本

github-protobuf - [commit/branches/releases/contributors] - 点击releases - 点击tags - 找到需要的旧版本即可

Points

  1. ./autogen.sh是获取GoogleMock,并生成对应的configure脚本
  2. ./configure是进行环境检测,并生成对应的makefile或Makefile
    --prefix=/usr/local可以指定安装路径
  3. make,按照makefile编译工程
  4. make install,执行makefile里面的install部分,进行安装
    --prefix=/usr/local可以指定安装路径