4

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

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

要包括哪些库?

4

1 回答 1

11

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

g++ mytest.cc -lprotobuf -o mytest
于 2009-05-08T00:27:24.527 回答