Linux交叉编译之configure
Linux中configure提供的参数System types:--build=BUILD configure for building on BUILD BUILD就是正在使用的机器/在build系统中建立package 这里默认就是本机--host=HOST cross-compile to build progr
Linux中configure提供的参数
System types:
--build=BUILD configure for building on BUILD BUILD就是正在使用的机器/在build系统中建立package
这里默认就是本机
--host=HOST cross-compile to build programs to run on HOST HOST是编译好的程序可以运行的平台/建立好package后,package能够在host上运行
这里默认是本机,即编译出来的交叉编译工具是在host上运行的。然后该交叉编译工具编译出来的文件可以在target上运行。
--target=TARGET configure for building compilers for Taeget 经由package产生的可执行文件能够在target上运行
例如:
1.在GNU/Linux 系统上交叉编译一个可以在AIX机器上运行的package
则:
build=i*86-pc-linux-gnu
host=rs6000-ibm-aix3.2
target=rs6000-ibm-aix3.2
2.在GNU/Linux系统上建立一个交叉编译工具,此交叉编译工具在AIX上运行,该交叉编译工具编译出来的文件可以在ARM上运行。
build=i*86-pc-linux-gnu
host=rs6000-ibm-aix3.2
target=arm-linux
3.(我自己使用的一个例子)
target=i386-rtems
我在Linux系统上建立rtems的交叉编译环境。此时我的build和host都是取默认值。因为我的交叉编译工具是在Linux上运行的,由该交叉编译工具编译出来的文件在rtems上运行。所以我的target是i386-rtems即可。
参考:http://oss.lzu.edu.cn/blog/blog.php?/do_showone/tid_116.html
autobook 3.4节
更多推荐
所有评论(0)