如何在configure时,将编译参数传入,改变默认的编译器gcc成arm-linux-gcc

【问题】

想要用交叉编译工具arm-linux-gcc去编译lrzsz,

但是在./configure的时候,无法用–host=arm-linux或–build=arm-linux或–target=arm-linux等传入此编译器参数。

【解决过程】

按照INSTALL中的介绍,也是常用的方法,在configure的时候,加上–host=arm-linux,结果没有实现我们要的效果,没有将编译器从默认的

gcc改成arm-linux-gcc,编译器还是用的默认的gcc:

[crifan@localhost lrzsz-0.12.20]$ CFLAGS=-O2 ./configure –host=arm-linux 

loading cache ./config.cache

………………..

checking for gcc… (cached) gcc

checking whether the C compiler (gcc -O2 ) works… yes

checking whether the C compiler (gcc -O2 ) is a cross-compiler… no

………………..

后来经过多次尝试,最后受默认的

CFLAGS=-O2 ./configure

进行配置所启发,想到,是否可以将CC参数传入到configure中,

结果证实,如果没有自己的cache-file,即时加了对的CC参数,也还是无法传入:

[crifan@localhost lrzsz-0.12.20]$ CFLAGS=-O2 CC=arm-linux-gcc ./configure –host=arm-linux 

loading cache ./config.cache

………………..

checking for gcc… (cached) gcc

checking whether the C compiler (gcc -O2 ) works… yes

checking whether the C compiler (gcc -O2 ) is a cross-compiler… no

checking whether we are using GNU C… (cached) yes

………………..

而且,如果CC参数放在configure后面:

./configure CC=arm-linux-gcc

则不能识别:

[crifan@localhost lrzsz-0.12.20]$ CFLAGS=-O2 ./configure CC=arm-linux-gcc

configure: warning: CC=arm-linux-gcc: invalid host type

………………..

参数传递必须像

CFLAGS=-O2 ./configure

一样,将参数设置放在configure的前面:

CC=arm-linux-gcc./configure

才能识别的。

必须要自己制定自己的cache-file 然后用./configure进行新配置,加上CC参数,才会即时生效,编译器才可以变成我们要的arm-linux-gcc:

[crifan@localhost lrzsz-0.12.20]$ CC=arm-linux-gcc ./configure –cache-file=cache_file_0 –prefix=/usr/crifan/lrzsz

………………..

checking for gcc… arm-linux-gcc

checking whether the C compiler (arm-linux-gcc ) works… yes

checking whether the C compiler (arm-linux-gcc ) is a cross-compiler… yes

checking whether we are using GNU C… yes

………………..

否则,就无法将我们的CC参数传入了:

[crifan@localhost lrzsz-0.12.20]$ CC=arm-linux-gcc ./configure –prefix=/usr/crifan/lrzsz

………………..

checking for gcc… (cached) gcc

checking whether the C compiler (gcc ) works… yes

checking whether the C compiler (gcc ) is a cross-compiler… no

checking whether we are using GNU C… (cached) yes

………………..

[crifan@localhost lrzsz-0.12.20]$ CFLAGS=-O2 CC=arm-linux-gcc ./configure –cache-file=cache_file_0 

loading cache cache_file_0

………………..

checking for gcc… arm-linux-gcc

checking whether the C compiler (arm-linux-gcc -O2 ) works… yes

checking whether the C compiler (arm-linux-gcc -O2 ) is a cross-compiler… yes

checking whether we are using GNU C… yes

最好此处在加上–prefix=/usr/crifan/lrzsz,表示具体安装到哪里

[crifan@localhost lrzsz-0.12.20]$ CFLAGS=-O2 CC=arm-linux-gcc ./configure –cache-file=cache_file_0 –prefix=/usr/crifan/lrzsz

loading cache cache_file_0

………………..

checking for gcc… arm-linux-gcc

checking whether the C compiler (arm-linux-gcc -O2 ) works… yes

checking whether the C compiler (arm-linux-gcc -O2 ) is a cross-compiler… yes

checking whether we are using GNU C… yes

………………..

其中,/usr/crifan/lrzsz是已经建立好的,已经存在的文件夹,上面这样表示编译后,

将生成的可执行文件安装拷贝到那个目录.

【办法总结】

在./configure的时候,将CC参数放入configure之前,并且要制定cache file,才能完全即时识别编译器:
CC=arm-linux-gcc ./configure –cache-file=cache_file_0

最新文章

  1. Delaunay Triangulation in OpenCascade
  2. 转:HAR(HTTP Archive)规范
  3. poj 1125 (floyd)
  4. JavaScript读二进制文件并用ajax传输二进制流
  5. 由一个Servlet 看java入门常犯的几个错误
  6. 3rd day
  7. Objective-C 笔记一(HelloWorld)
  8. 5 输出的properties文件按照key进行排序
  9. jQuery代码片段
  10. asp.net mvc 下载文件 txt doc xsl 等等
  11. boa-0.94.13:Hello CGI
  12. GitHub删除文件
  13. 彻底解决tap“点透”,提升移动端点击响应速度
  14. SUID、SGID详解
  15. python接口自动化测试(四)-Cookie&Sessinon
  16. Android开发之实现多次点击事件
  17. 1、爬虫简介与request模块
  18. 如何高效判断java数组是否包含某个值
  19. [转]如何使用Fiddler抓取指定浏览器的数据包
  20. 要back的题目 先立一个flag

热门文章

  1. Luogu P3170 [CQOI2015]标识设计 状态压缩,轮廓线,插头DP,动态规划
  2. javascript之定时器的使用
  3. JAVA泛型里面各值代表的意义
  4. 【shell】sed处理多行合并
  5. 牛客挑战赛34 A~E
  6. 浅谈Android的资源编译过程
  7. layui table 改
  8. C++STL中的unique函数
  9. 搜狗微信采集 —— python爬虫系列一
  10. Android 通过应用设置系统日期和时间的方法