|
|
debian:~# echo "main(){printf(\"hello world\n\");}" >hello.c
debian:~# gcc hello.c
/usr/bin/ld: crt1.o: No such file: No such file or directory
collect2: ld returned 1 exit status
debian:~# ./a.out
我查看了一下,的确没有/usr/bin/ld: crt1.o这个文件,但是为什么会没有呢?我使用的是debian sarge |
|