我已经在我的Fedora 20盒上安装了gcc-arm-linux-gnu-4.9.1-1.fc20.x86_64
。
$ cat main.c
int main(void)
{
return 0;
}
$ arm-linux-gnu-gcc main.c
collect2: fatal error: cannot find 'ld'
compilation terminated.
我是不是遗漏了什么?这是个虫子吗?
发布于 2014-12-28 10:03:55
我认为您遇到了一个bug 1122003实例。它似乎已经在gcc-arm-linux 4.9.1-1.1.fc22.x86_64中解决了,或者您应该可以同时使用--with-ld
标志来解决这个问题。
https://stackoverflow.com/questions/27675326
复制相似问题