标签: c++ protocol-buffers
我有一个mytest.proto文件的mytest.cc和mytest.h输出,但我找不到任何关于如何使用g ++编译对象的参考。 (.proto很好,因为我使用Python)
g ++ mytest.cc -l ???????
要包含哪些库?
答案 0 :(得分:11)
我认为您可能需要链接到libprotobuf
g++ mytest.cc -lprotobuf -o mytest