Ubuntu上安装protobuf 和protobuf-c

前端之家收集整理的这篇文章主要介绍了Ubuntu上安装protobuf 和protobuf-c前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第一步、下载安装包 http://pan.baidu.com/s/1i43CzJn
第二部、解压

安装protobuf

$ cd protobuf-2.6.1
$ ./configure
$ make
$ make check
$ sudo make install

安装protobuf-c

$cd protobuf-c-1.2.1
$./configure
$ export LD_LIBRARY_PATH=/usr/local/lib 
//不加这句`export LD_LIBRARY_PATH=/usr/local/lib`可能会报错
//(error while loading shared libraries: libprotoc.so)
$ make
$ sudo make install
原文链接:https://www.f2er.com/ubuntu/351151.html

猜你在找的Ubuntu相关文章