一 、 protobuf 安装
下载链接
1. 确认安装依赖库:automake ,autoconf ,libtool
2. 下载 protobuf 安装文件,protobuf-cpp-3.5.0.tar.gz ,
解压,
./configure
make
make check
sudo make install
【默认安装路径:/usr/local/】
3. 安装完添加环境变量, vi /etc/profile 末尾添加
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
export PKG_CONFIG_PATH
5. sudo ldconfig
(ps:如果失败则在/etc/ld.so.conf 文件中加入 /usr/local/lib
,然后执行sudo ldconfig
)
二、protobuf-c的安装
下载链接
1.确认安装依赖: protobuf
2. 需在github上下载protobuf-c protobuf-c-master.zip
解压
./autogen.sh
./configure
make
sudo make install
【默认安装路径:/usr/local/】
PS:
如果在编译过程中出现错误如下:(可能是make时出现)