当我尝试运行ncurses项目时,我的atom IDE有什么问题?

时间:2018-12-31 21:53:38

标签: c atom-editor

最近,我试图在Atom IDE中编译并运行 ncurses 项目。 我使用以下命令成功将ncurses链接到Atom:

pkg-config --libs ncursesw
pkg-config --cflags ncursesw

然后将结果复制到 Atom>编辑>配置中,但是当我尝试编译代码时,我会遇到此错误:

gcc: fatal error: no input files
compilation terminated.
/bin/sh: 2: main.c: not found

我试图更改我的编译器,而我现在正在使用GCC_MAKE_RUN compiler

我还成功地将ncurses链接到Code :: Blocks IDE并易于编译。

#include <ncurses.h>

int main(void)
{
initscr();
printw("Hello World !!!");
refresh();
getch();
endwin();
return 0;
}

我希望Atom可以简单地运行我的代码,但实际上我会遇到错误...

0 个答案:

没有答案