哪些库必须与协议缓冲区生成的C ++代码链接

时间:2009-05-08 00:18:06

标签: c++ protocol-buffers

我有一个mytest.proto文件的mytest.cc和mytest.h输出,但我找不到任何关于如何使用g ++编译对象的参考。 (.proto很好,因为我使用Python)

g ++ mytest.cc -l ???????

要包含哪些库?

1 个答案:

答案 0 :(得分:11)

我认为您可能需要链接到libprotobuf

g++ mytest.cc -lprotobuf -o mytest