列出/设置制作 & 的目录C++搜索头文件

发布于 2024-11-06 20:38:10 字数 401 浏览 0 评论 0原文

我有一个项目,我正在学习如何使用 make 与 C++(我也在学习)。 我已经成功使用 mac ports 安装了 GCC 4.6,并使用自制软件安装了 Boost 库。 我现在的问题是我的项目包含的 boost 无法处理此错误:

致命错误:boost/test/unit_test.hpp: 没有这样的文件或目录

我猜我正在使用的 GCC 版本(由 mac ports 安装的版本)没有使用包含文件的标准搜索路径?有问题的文件(boost/test/unit_test.hpp)肯定在我的系统上,位于/usr/local/include。 有什么方法可以列出在 make & 中搜索的目录吗?通过 GCC,以便我可以验证这确实是问题所在? 为任何干杯&所有帮助, 道格.

I have a project with which I'm learning how to use make with C++ (which I'm also learning).
I've managed to get GCC 4.6 installed with mac ports, and have installed the Boost libraries with homebrew.
My issue now is that my project's includes to boost aren't working with this error:

fatal error: boost/test/unit_test.hpp:
No such file or directory

I guess the version of GCC I'm using (the one installed by mac ports) is not using the standard search path for include files? The file in question (boost/test/unit_test.hpp) is definitely on my system, at /usr/local/include.
Is there some way that I can list the directories that are being searched in make & by GCC, so that I can verify that this is indeed the problem?
Cheers for any & all help,
Doug.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白况 2024-11-13 20:38:10
gcc -v -x c -c /dev/null

除其他外,将为您提供用于搜索包含文件的路径。您可以使用 gcc 的参数修改此路径。主要的是 -I/another/path/to/use 但您可能想阅读 gcc 文档

gcc -v -x c -c /dev/null

will give you, among other things, the path used for searching include files. You can modify this path with arguments to gcc. The main one being -I/another/path/to/use but you may want to read the gcc documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文