如何在alchemy中给出相关头文件的路径?
我正在将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果该文件夹位于源本地,则不应使用括号(它告诉编译器 在标准系统文件夹中查找源)。您应该使用引号:
请注意,这并不是 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:
Note that this isn't anything peculiar to Alchemy-- regular gcc works the same way.