protobuf 的 undefined reference 问题

  • Post author:
  • Post category:其他


今天安装protobuf,安装

https://blog.csdn.net/K346K346/article/details/51754431

这篇教程操作时

g++ -o protobufTest.out -lprotobuf test.cpp student.pb.cc

最后一直出不来结果,而且报出一堆 undefined reference to google::protobuf 的错误:

在这里插入图片描述

折腾了一圈,类似这篇博客

https://blog.csdn.net/qq_17278169/article/details/64128525

里的方法也都试过了,但是还是解决不了问题。

最后参考

https://blog.csdn.net/qinjie6839000/article/details/53573629

, 使用

g++ student.pb.cc test.cpp -o test  `pkg-config --cflags --libs protobuf` -lpthread

就正常了。



版权声明:本文为Design_by_TaoZ原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。