예로서:
hsmyers@ubuntu:~/c_dev$ cat hello.c
#include <stdio.h>
int main(int argc,char **argv) {
printf("Hello World!\n");
return 0;
}
hsmyers@ubuntu:~/c_dev$ gcc -c -o hello.o hello.c
In file included from /usr/include/stdio.h:28:0,
from hello.c:1:
/usr/include/features.h:323:26: fatal error: bits/predefs.h: No such file or directory
compilation terminated.
오류 메시지를 수정하려고 시도한 후 어딘가에 추측합니다.
/ usr / bin / ld : crt1.o를 찾을 수 없습니다 : 해당 파일이나 디렉토리가 없습니다.
나는 일을 완전히 망쳐 놓았습니다. 누구든지 조언 해 주시겠습니까?
libc-dev가 이미 설치되어 있습니까? 그것은 나를 위해 잘 컴파일됩니다.
—
itnet7