오래전 이야기/Server

Ubuntu에서 C컴파일시 에러.

리눅스 엔지니어였던 2008. 9. 15. 18:46

root@rick-desktop:/home/pg# gcc -o hello hello.c
hello.c:1:19: error: stdio.h: No such file or directory
hello.c: In function 'main':
hello.c:5: warning: incompatible implicit declaration of built-in function 'printf'


이는 라이브러리가 정상적으로 설정되지 않았기에 나오는 에러다. 그러므로 해당 라이브러리를 설치해줘야 한다.


apt-get install build-essential

 

root@rick-desktop:/home/pg# gcc -o hello hello.c          
root@rick-desktop:/home/pg# ls
hello  hello.c  test.c




=========================

<출처: http://ubuntuforums.org/archive/index.php/t-201961.html >