赞
踩
1.由于protobuf是C++写的,需要以下这些安装包:autoconf , automake, libtool, curl, make, g++, unzip
sudo apt-get install autoconf automake libtool curl make g++ unzip
2.安装源文件
git clone https://github.com/protocolbuffers/protobuf.git
3.cd 到protobuf目录
cd protobuf
4.clone子模块的依赖:
git submodule update --init --recursive
5.执行自动生成的shell脚本:
./autogen.sh
6.配置文件shell脚本
./configure
7.编译
make
8. 编译检查(个人觉得可有可无)
make check
9. 编译安装
sudo make install
10. 刷新
sudo ldconfig
11. 查看安装结果
protoc --version
原文链接:https://blog.csdn.net/u010918487/article/details/82947157
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。