在交叉编译 iperf的时候,
(1)./configure --host=arm-linux
(2)make
(3)出现 gnu_getopt.o: Relocations in generic ELF (EM: 3)错误提示。
解决方法:
(1)在工程根目录下执行make clean -w;
(2)./configure --host=arm-linux
(3)make
(4)make install
(5)顺利执行,编译成功
原因:
(1)由于这个在这个iperf目录中之前使用gcc编译过x86版本的iperf,然后修改configure 的编译选项开始编译arm-linux版本,会造成有x86的文件遗留,使用make clean -w清理后再交叉编译;
阅读(18540) | 评论(0) | 转发(0) |