我正在使用此程序https://github.com/aviikc/CIS2500_fileeditor。 ncurses
中有一个ncursesw
和c: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
安装ncurses
和mingw-get
install pdcurses进行安装。有人可以指导。我可能弄乱了整个程序。我是C和C ++的新手。我的意图是使用文本用户界面创建类似子手的游戏。