当前位置: 技术问答>linux和unix
linux shell中gcc file.c -o myfile出错
来源: 互联网 发布时间:2016-06-19
本文导语: gcc file.c -o myfile 提示:collect2:cannot find ld file.c内容是 main() { printf(“ok”); } 请问这个是什么情况啊? | 你用 which ld 命令查看能否找到ld。 如果找不到,就再安装一下。 一般redhat光盘...
gcc file.c -o myfile
提示:collect2:cannot find ld
file.c内容是
main()
{
printf(“ok”);
}
请问这个是什么情况啊?
提示:collect2:cannot find ld
file.c内容是
main()
{
printf(“ok”);
}
请问这个是什么情况啊?
|
你用
which ld
命令查看能否找到ld。
如果找不到,就再安装一下。
一般redhat光盘里面都会有的。
代码和编译命令我都试了,
有几个警告,但可以编译通过,
执行也正常。
which ld
命令查看能否找到ld。
如果找不到,就再安装一下。
一般redhat光盘里面都会有的。
代码和编译命令我都试了,
有几个警告,但可以编译通过,
执行也正常。
|
很有 经验 隐藏信息..
|
试过了,程序没问题,ld没装好!