无法使用MinGW使用<ncurses.h>标头编译程序

时间:2019-06-08 07:49:25

标签: c gcc compiler-errors ncurses pdcurses

我正在使用此程序https://github.com/aviikc/CIS2500_fileeditorncurses中有一个ncurseswc:MinGW/include文件夹。 但正在运行

gcc -Wall -pedantic -std=c99 ./src/fileeditor.c -Iinclude -lncurses -o ./bin/output

它引发错误:

gcc -Wall -pedantic -std=c99 ./src/fileeditor.c -Iinclude -lncurses -o ./bin/output
In file included from ./src/fileeditor.c:1:
include/fileeditor.h:1:10: fatal error: ncurses.h: No such file or directory
 #include <ncurses.h>
          ^~~~~~~~~~~
compilation terminated.
make: *** [makefile:2: all] Error 1

我知道它找不到图书馆。 我曾使用mingw-get安装ncursesmingw-get install pdcurses进行安装。有人可以指导。我可能弄乱了整个程序。我是C和C ++的新手。我的意图是使用文本用户界面创建类似子手的游戏。

0 个答案:

没有答案