Forum Discussion
Altera_Forum
Honored Contributor
15 years agocan not use curses LIBS by -lcurses
vt100.c: #include <curses.h> int main() { initscr(); //box(stdscr,ACS_VLINE,ACS_HLINE); move(LINES/2,COLS/2); waddstr(stdscr,"Hello,world!"); refresh(); getch(...
Altera_Forum
Honored Contributor
15 years agoarens,
Where is curses.h located? You can't assume that the Nios II GCC has the same default include paths as your native compiler. It looks like you'll have to add an additional "-I" to include the directory where curses.h resides. Cheers, --slacker