반응형

출처: http://timedigit.blogspot.kr/2013/10/so-i-tried-this-simple-program-to-test.html

http://stackoverflow.com/questions/21477407/llvm-3-5-fails-to-link

 

 

1.에러 -> term.h 못찾겠다(fatal error: term.h: No such file or directory)

 

해결책

sudo apt-get install libncurses5-dev libncursesw5-dev

로 설치

 

 

2. root@ubuntu:/home/c# gcc -o badterm badterm.c
/tmp/ccolx2wA.o: In function `main':
badterm.c:(.text+0x20): undefined reference to `setupterm'
collect2: error: ld returned 1 exit status

 

 

해결책

root@ubuntu:/home/c# gcc -o badterm badterm.c -ltinfo

 

gcc 뒤에 -ltinfo를 붙이면 정상적으로 컴파일 된다.



반응형

+ Recent posts