curses.h: No such file or directory

IT/Programming/Solution/Tip 2011. 8. 19. 12:46

curses 라이브러리가 설치되지 않았을 때 발생하는 오류다. 다음의 커맨드로 curses 라이브러리를 설치하여 문제를 해결할 수 있다.

 

RHEL / Fedora / CentOS

yum install ncurses-devel ncurses

 

Debian / Ubuntu

apt-get install libncurses5-dev libncursesw5-dev

 

빌드할 때, -lncurses 옵션을 붙여줘야 올바르게 컴파일 할 수 있다.

 

gcc -o program program.c -lncurses

설정

트랙백

댓글