我使用的是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"

有线索吗?

最佳答案

必须在启用UNIXOS标志的情况下下载并重建makedepend。
详情如下:https://www.libreoffice.org/bugzilla/show_bug.cgi?id=10021

09-11 17:54