3

我使用 autoconf/automake 做了一个小项目。

该项目旨在进行本机编译和交叉编译,例如:

./configure --host=arm-none-eabi

这工作正常。但是一个问题是如果没有安装交叉编译器,配置的脚本会忽略它,并使用安装的默认编译器愉快地编译它,例如

./configure --host=arm-none-eabi
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for arm-none-eabi-strip... no
checking for strip... strip
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking whether make sets $(MAKE)... (cached) yes
checking for arm-none-eabi-gcc... no
checking for gcc... gcc
checking whether the C compiler works... yes

这里没有找到 arm-none-eabi-gcc。但它会找到本机 gcc,并继续使用本机编译器。

如果我通过使用 --host=XXXX 请求交叉编译并且找不到编译器,我可以在 configure.ac 中放入什么以使配置脚本停止并出错?

4

1 回答 1

2

当您指定--host=<host-type>,且该值与运行config.guess脚本的结果不同时,autoconf进入交叉编译模式。具体来说,变量cross_compiling设置为yes

如果配置脚本处于“交叉编译”模式,则无法运行任何生成的可执行文件,因此无法判断生成的二进制文件是否是有效的“主机”二进制文件。据推测,一个包含文件魔法值的大型数据库可能能够判断是否生成了有效的主机二进制文件。尽管在自动工具中积累了数十年的经验,但仍有一些组合问题无法跟上所有可能的架构和 ABI。

autoconfC 编译器测试检查编译器是否$CC可以构建可执行文件。autoconf如果编译器没有以主机三元组为前缀,例如 ,则可能会提供警告arm-none-eabi-gcc,但如果它找到工作编译器(例如 native ),则不会“失败” gcc

因此,确保使用正确编译器进行交叉编译的唯一方法是指定编译器:

./configure --host=arm-none-eabi CC="arm-none-eabi-gcc"

如果此编译器无法构建可执行文件,则配置脚本将失败。

于 2013-11-01T09:40:51.700 回答