protobuf问题集锦(一)

问题

按如下步骤在Centos上编译安装Google Protocol Buffers

$ ./configure 
$ make 
$ make check 
$ sudo make install 

运行

$ protoc --version 

出现找不到动态库的错误

protoc: error while loading shared libraries: libprotobuf.so.7: cannot open shared object file: No such file or directory 

原因

protobuf的默认安装位置是 /usr/local/usr/local/lib 不在Centos系统默认的LD_LIBRARY_PATH 里。这个问题 protobufREADME.txt 写得很清楚。

** Hint on install location **

By default, the package will be installed to /usr/local. However,
on many platforms, /usr/local/lib is not part of LD_LIBRARY_PATH.
You can add it, but it may be easier to just install to /usr
instead. To do this, invoke configure as follows:

./configure --prefix=/usr

If you already built the package with a different prefix, make sure
to run "make clean" before building again.

解决方法

1. 创建文件 /etc/ld.so.conf.d/libprotobuf.conf 包含内容 

/usr/local/lib

2. 运行命令

$ sudo ldconfig 

这时再运行 protoc --version 就可以得到版本号了

$ protoc --version 
libprotoc 2.4.0a 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值