举个例子:
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 2011年