据我所知,./configure
脚本是使用GNU Autoconf
生成的。我根本不知道Autoconf
。这些工具如何工作,如何使用这个./configure
脚本来进行交叉编译?
答案 0 :(得分:5)
这是一篇非常好的小文章,内容涉及如何交叉编译:http://linux.bytesex.org/cross-compiler.html。
交叉编译的主要部分是将编译器的配置标志设置为poinst到目标体系结构和平台:
./configure --target=sparc-linux --with-gnu-as i486-redhat-linux
这可能已经过时(从该文章中修改过的副本和粘贴),但同样的概念仍然适用。