赞
踩
// 之前一直配置protobuf 不成功, 特此记录一下如何解决的
从github 或者 Gitee 下载protobuf 源码
Gitee地址
GitHub地址
确保系统安装了以下软件:
sudo apt-get install autoconf automake libtool curl make g++ unzip
cd protobuf/
git checkout 3.14.x
git submodule update --init --recursive
./autogen.sh
./configure --prefix=/usr/local/protobuf
make
make check
sudo make install
sudo ldconfig
需等待一段时间
sudo vim /etc/profile
在打开的文件末尾,新建行添加:
export PATH=$PATH:/usr/local/protobuf/bin/
export PKG_CONFIG_PATH=/usr/local/protobuf/lib/pkgconfig/
保存退出后,输入命令:
source /etc/profile
sudo vim /etc/ld.so.conf
在打开的文件末尾,新建行添加:
/usr/local/protobuf/lib
保存退出后,执行命令:
sudo ldconfig
protoc --version
sudo apt-get remove libprotobuf-dev
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。