bjacklyn

Results 3 comments of bjacklyn

@Yannic upgrading `rules_proto` to `cfdc2fa31879c0aebe31ce7702b1a9c8a4be02d2` and using `protobuf-3.11.3` does not appear to work (same error). Are you suggesting the `rules_proto` upgrade will fix this only because `rules_proto` itself depends on...

Actually it looks like if both of these commits are applied (i.e. `patches = [...]` on the `http_archive`) to the older protobufs version it works for me (it builds at...

@limdor -- I'm using `rules_proto`, for example: ``` # cat BUILD load("@rules_cc//cc:defs.bzl", "cc_proto_library") load("@rules_proto//proto:defs.bzl", "proto_library") proto_library( name = "api_proto", srcs = ["api.proto"], ) cc_proto_library( name = "api_proto_library", deps = [":api_proto"],...