如何在alchemy中给出相关头文件的路径?

发布于 2024-10-11 12:23:34 字数 177 浏览 2 评论 0原文

我正在将 speexdecoder 代码转换为 Alchemy 中的 C 代码。问题是我正在导入头文件#include。 Alchemy gcc 给出错误,指出 speex.h 未找到。

我已将 speex 目录放置在我的 C 代码所在的位置。

I am converting a speexdecoder code to C in alchemy. The problem is that i am importing a header file #include <speex/speex.h>. Alchemy gcc gives an error that speex.h not found.

I have placed the speex directory where my C code is.

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

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

发布评论

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

评论(1

风流物 2024-10-18 12:23:34

如果该文件夹位于源本地,则不应使用括号(它告诉编译器 在标准系统文件夹中查找源)。您应该使用引号:

#include "speex/speex.h"

请注意,这并不是 Alchemy 所特有的东西——常规 gcc 的工作方式相同。

If the folder is local to your source, you shouldn't be using brackets (which tells the compiler to look for the sources in the standard system folders). You should be using quotes:

#include "speex/speex.h"

Note that this isn't anything peculiar to Alchemy-- regular gcc works the same way.

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