问题解决:安装 protobuf 的过程及出现的 bug 记录
Posted 看,未来
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了问题解决:安装 protobuf 的过程及出现的 bug 记录相关的知识,希望对你有一定的参考价值。
安装步骤
1、从github上下载:git clone https://github.com/protocolbuffers/protobuf.git
如果报错,请换个网络。
2、解决编译protobuf库文件工具:autoconf automake libtool curl make g++ unzip;通过命令:yum -y install autoconf automake libtool curl make gcc-c++ unzip libffi-dev安装
安装libffi-dev:yum install -y libffi libffi-devel
3、输入命令:cd protobuf进入protobuf文件夹下
4、输入命令:./autogen.sh进行环境检查
autoreconf: command not found
yum install -y autoconf automake libtool
5、输入命令:./configure进行配置文件检查(最后会有警告,但问题不大,不用管)
6、输入命令:make编译该文件
会很久
7、输入命令:make install将编译后的文件安装到指定目录中(/usr/local/include/google/protobuf)
8、输入命令:ldconfig刷新共享库(重要!)
9、输入命令:protoc -h,有命令选项输出即安装成功
以上是关于问题解决:安装 protobuf 的过程及出现的 bug 记录的主要内容,如果未能解决你的问题,请参考以下文章