Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用时遇到问题 - 包括 boost 库。
#include <boost/dynamic_bitset.hpp>
而且我收到错误:boost/dynamic_bitset.hpp:没有这样的文件或目录 我的项目所在的地方有一个 boost 文件夹......如何修复它?谢谢
如果您boost的项目中有该文件夹,您可能只需要告诉编译器在该文件夹中查找头文件。
boost
使用 gcc/g++ 这可以通过-I</path/to/headers>选项(不带角括号)来完成。
-I</path/to/headers>
其他编译器的工作方式相同,但标志可能与-I.
-I