如何在炼金术中提供相关头文件的路径?

时间:2011-01-11 05:05:35

标签: c flex alchemy

我在炼金术中将speexdecoder代码转换为C.问题是我正在导入头文件#include <speex/speex.h>。 Alchemy gcc给出了一个错误,即找不到speex.h。

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

1 个答案:

答案 0 :(得分:1)

如果文件夹是源的本地文件夹,则不应使用括号(告诉编译器look for the sources in the standard system folders)。你应该使用引号:

#include "speex/speex.h"

请注意,这不是Alchemy特有的任何东西 - 常规gcc的工作原理相同。