././../../gccomm/proto/ProtoDDP.pb.h:9:10: fatal error: google/protobuf/stubs/common.h: No such file or directory 9 | #include <google/protobuf/stubs/common.h>
时间: 2023-06-29 20:21:05 浏览: 167
pb.rar_pb_pb 框架_pb框架_site:www.pudn.com
这个错误提示是因为编译器无法找到 `common.h` 头文件。这个头文件是 Google Protobuf 库的一部分,可能是因为你的编译环境没有正确配置或者没有正确安装 Google Protobuf 库导致的。你需要检查你的编译环境,确保已经正确安装了 Google Protobuf 库,并且编译器能够找到相关的头文件和库文件。如果你使用的是 Linux 系统,可以通过包管理器安装 Google Protobuf 库,比如在 Ubuntu 系统上可以使用以下命令进行安装:
```
sudo apt-get install libprotobuf-dev protobuf-compiler
```
如果你是在 Windows 系统上进行编译,可以参考 Google Protobuf 官方文档中的安装指南进行安装和配置。
阅读全文