Dear Protobuf Experts, Currently, I am using protobuf from bazel by including in my WORKSPACE:
git_repository( name = "protobuf", remote = "https://github.com/google/protobuf", commit = "337a028bb65ccca4dda768695950b5aba53ae2c9", ) This, however, does not compile protobuf with zlib and I cannot use the Gzipped streams. From what I can see, there is no mention of zlib (or HAVE_ZLIB) in the BUILD file in protobuf so no cpp code is generated for GzipInputStream and GzipOutputStream and linking fails. Ideally, I would like to include zlib in my WORKSPACE and point protobuf to it, but a variant with dynamic linking to zlib is also ok. What is the easiest (but good) way to tell protobuf to include zlib when compiled with bazel? Thanks Veselin -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/protobuf. For more options, visit https://groups.google.com/d/optout.
