统计文本分析,语言建模和信息检索程序 - 彩虹

时间:2017-04-15 06:47:16

标签: c compiler-errors classification text-analysis language-model

我正在尝试使用Rainbow(http://www.cs.cmu.edu/~mccallum/bow/src/bow-20020213.tar.gz)库来解决一个简单的问题,但是无法编译rainbow.c文件。

错误是

error: expected "FILENAME" or <FILENAME>

#include “bow/libbow.h”

         ^

./rainbow.c:23:10: fatal error: 'argp.h' file not found

#include <argp.h>

         ^

2 errors generated.

有没有办法避免生成有效的编译文件。

这是在 -

之后

*

error: 'bow/libbow.h' file not found with <angled> include;
      use "quotes" instead
#include <bow/libbow.h>
         ^~~~~~~~~~~~~~
         "bow/libbow.h"
In file included from ./rainbow.c:22:
./bow/libbow.h:40:10: fatal error: 'malloc.h' file not found
#include <malloc.h>             /* for malloc() and friends. */
         ^

*

如果可能的话,请花几分钟时间帮忙,因为我需要提交所选项目问题的包裹。

1 个答案:

答案 0 :(得分:0)

您是否编辑过rainbow.c文件?看起来第22行有#include行。您应该阅读https://gcc.gnu.org/onlinedocs/cpp/Search-Path.html并注意角括号搜索标准包含路径(可以修改)的文件。可能你需要做一些安装。查看自述文件并确保已按照安装说明进行操作。 我下载了你链接的弓包,并查看了内部。有一个rainbow.c(您显然正在尝试编译。请阅读随附的README文件并按照其中包含的编译/安装说明进行操作。