`./configure`选项用于交叉编译?

时间:2011-02-28 07:29:12

标签: autoconf configure cross-compiling

据我所知,./configure脚本是使用GNU Autoconf生成的。我根本不知道Autoconf。这些工具如何工作,如何使用这个./configure脚本来进行交叉编译?

1 个答案:

答案 0 :(得分:5)

这是一篇非常好的小文章,内容涉及如何交叉编译:http://linux.bytesex.org/cross-compiler.html

交叉编译的主要部分是将编译器的配置标志设置为poinst到目标体系结构和平台:

./configure --target=sparc-linux --with-gnu-as i486-redhat-linux

这可能已经过时(从该文章中修改过的副本和粘贴),但同样的概念仍然适用。