1

我正在使用 makedepend 1.0.4 版,尽管使用了 Y 选项(它可以防止搜索标准包含目录),但我收到了警告:

$ cat test.c
#include <stdio.h>

int main(void)
{
    return 0;
}
$ makedepend -Y test.c
makedepend: warning:  test.c, line 1: cannot find include file "stdio.h"

有什么线索吗?

4

1 回答 1

0

您必须在启用 UNIXOS 标志的情况下下载并重建 makedepend。

详情在这里:https ://www.libreoffice.org/bugzilla/show_bug.cgi?id=10021

于 2014-12-09T01:08:37.987 回答