1

我正在尝试从 protobuf 文件编译成 golang。编译后,我在生成的 pb.go 中看到了这个

// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
//  protoc-gen-go v1.23.0
//  protoc        v3.12.3

// This is a compile-time assertion that a sufficiently up-to-date version
// of the legacy proto package is being used.
const _ = proto.ProtoPackageIsVersion4

但是,之前生成的 pb.go 有

// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package

使用 proto 包的第 4 版,代码会中断。如何编译使其具有版本 3 的 ProtoPackage?

4

1 回答 1

2

问题似乎出在旧版本的protobuflib 上。ProtoPackageIsVersion3适用于 1.3.* 并且ProtoPackageIsVersion4适用于 1.4+,您可以在此处查看更新:https ://github.com/golang/protobuf/releases/tag/v1.4.0

我会建议更新到较新的版本,因为例如 googleapis 也依赖于较新的版本。请参阅https://developers.google.com/protocol-buffers/docs/reference/go/faq#enforce-version-apiv1

如果由于某种原因,您仍然需要使用旧版本的所有内容,则需要protobuf1.3.5 版本,并且很可能需要手动构建proto-gen-go protoc匹配。您可以在此处看到与步骤类似的问题:https ://github.com/golang/protobuf/issues/1090

于 2020-10-01T07:59:27.457 回答