在golang中使用protobuf

前端之家收集整理的这篇文章主要介绍了在golang中使用protobuf前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在golang中使用protobuf

编译protobuf 和 golang 插件

NOTE: https://github.com/google/protobuf/releases 中提供了编译好的二进制版本可以直接下载使用。

  1. git clone git@github.com:google/protobuf.git
  2. 从autogen.sh 中找到gmock的下载地址并下载: https://googlemock.googlecode.com/files/gmock-1.7.0.zip,并解压到protobuf/gmock
  3. 下载 http://zlib.net/zlib-1.2.8.tar.gz, 并解压
  4. 进入protobuf/cmake目录 mkdir build && cd build
  5. cmake .. -G "MinGW Makefiles" -DZLIB_INCLUDE_DIR:PATH=/path/to/zlib-1.2.8/
  6. mingw32-make
  7. go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
  8. 编译proto文件 protoc --go_out=. *.proto
原文链接:https://www.f2er.com/go/189679.html

猜你在找的Go相关文章