[root@F2C-1 protobuf-2.5.0]# ./configure
[root@F2C-1 protobuf-2.5.0]# make check
[root@F2C-1 protobuf-2.5.0]# make install
[root@F2C-1 protobuf-2.5.0]# protoc –version
protoc: error while loading shared libraries: libprotobuf.so.8: cannot open shared object file: No such file or directory
这里报错 解决办法
[root@F2C-1 protobuf-2.5.0]# export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
[root@F2C-1 protobuf-2.5.0]# protoc –version
建一个hello例子
[root@F2C-1 protocfile]# vi hello.proto
package hello;
message Hello{
required int32 id = 1;
required string name=2;
optional string eamil=3;
}
[root@F2C-1 protocfile]# mkdir out
[root@F2C-1 protocfile]# protoc hello.proto –cpp_out=./out //按C++输出
看一下成功结果
[root@F2C-1 protocfile]# cd out
[root@F2C-1 out]# ll
total 28
-rw-r–r– 1 root root 12835 Jun 24 11:19 hello.pb.cc
-rw-r–r– 1 root root 9406 Jun 24 11:19 hello.pb.h
有两个文件
本文介绍了Protobuf的安装步骤及常见错误解决方法,并通过一个简单的示例展示了如何使用Protobuf定义消息格式并生成对应的源代码。
2194

被折叠的 条评论
为什么被折叠?



