今天在用gcc编译c程序时候竟然莫名其妙的出现了错误:
[root@jin Desktop]# gcc hello.c
/usr/bin/ld: crt1.o: No such file: No such file or directory
collect2: ld returned 1 exit status
经过不断的尝试,最后发现在执行了如下命令后:
[root@jin Desktop]# yum reinstall libc-devel -y
编译器又可以正常工作了,可以推测,crt1.o可能存在与libc-devel 中。