问一个linux交叉编译器的问题
在我对配置的uboot进行测试编译的时候,# make test2410_config可以通过,但是
# make CROSS_COMPILE=arm-linux- 总是通不过。出现如下情况:
[root@localhost u-boot-1.1.6]# make CROSS_COMPILE=arm-linux-
for dir in tools examples post post/cpu ; do make -C $dir _depend ; done
make[1]: Entering directory `/home/u-boot-1.1.6/tools'
make[1]: Nothing to be done for `_depend'.
make[1]: Leaving directory `/home/u-boot-1.1.6/tools'
make[1]: Entering directory `/home/u-boot-1.1.6/examples'
make[1]: Nothing to be done for `_depend'.
make[1]: Leaving directory `/home/u-boot-1.1.6/examples'
make[1]: Entering directory `/home/u-boot-1.1.6/post'
make[1]: Nothing to be done for `_depend'.
make[1]: Leaving directory `/home/u-boot-1.1.6/post'
make[1]: Entering directory `/home/u-boot-1.1.6/post/cpu'
make[1]: Nothing to be done for `_depend'.
make[1]: Leaving directory `/home/u-boot-1.1.6/post/cpu'
make -C tools all
make[1]: Entering directory `/home/u-boot-1.1.6/tools'
gcc -Wall -pedantic -idirafter /home/u-boot-1.1.6/include -idirafter /home/u-boot-1.1.6/include2 -idirafter /home/u-boot-1.1.6/include -DTEXT_BASE=0x33F80000 -DUSE_HOSTCC -O -c -o img2srec.o img2srec.c
gcc: installation problem, cannot exec `cc1': No such file or directory
make[1]: *** [img2srec.o] Error 1
make[1]: Leaving directory `/home/u-boot-1.1.6/tools'
make: *** [tools] Error 2
怎么办,不知道为什么出这些错
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
怎么感觉是本地编译器gcc安装有问题
没有找到configure文件,看看路径 “../../src/binutils-2.16” 是否正确。
在制作交叉编译器时遇到问题。这个是怎么回事儿啊,求大侠帮助啊
gcc -Wall -pedantic -idirafter /home/u-boot-1.1.6/include -idirafter /home/u-boot-1.1.6/include2 -idirafter /home/u-boot-1.1.6/include -DTEXT_BASE=0x33F80000 -DUSE_HOSTCC -O -c -o img2srec.o img2srec.c
手动执行这条命令试试,看看是否也有错。