您的位置:首页 > 理论基础 > 计算机网络

TCP/Protobuf之Protocol Buffers配置指南

2016-06-27 14:43 609 查看
使用Protobuf,先配置环境,以下是配置Protobuf的步骤和编译Protobuf原文件的步骤

Java:

Compiled Environment Download:

https://github.com/google/protobuf/releases/download/v3.0.0-beta-3/protobuf-java-3.0.0-beta-3.zip

Install:

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


Check version:

$ protoc --version


Protocol Buffers Output

https://developers.google.com/protocol-buffers/

To Objective-C(.h .m)

$ protoc --proto_path=src --objc_out=build/gen src/foo.proto src/bar/baz.proto


To Java(.java)

$ protoc --proto_path=src --java_out=build/gen src/foo.proto


–proto_path可以缩写为: -I

Objective-C:

Download:

https://github.com/google/protobuf/releases/download/v3.0.0-beta-3/protobuf-objectivec-3.0.0-beta-3.zip

Install:

$ objectivec/DevTools/full_mac_build.sh


Building:

There are two ways to include the Runtime sources in your project:

Add
objectivec/\*.h
&
objectivec/GPBProtocolBuffers.m
to your project.

or

Add
objectivec/\*.h
&
objectivec/\*.m
except for

objectivec/GPBProtocolBuffers.m
to your project.

If the target is using ARC, remember to turn off ARC (
-fno-objc-arc
) for the

.m
files.

The files generated by
protoc
for the
*.proto
files (
\*.pbobjc.h' and
*.pbobjc.m`) are then also added to the target.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: