当前位置: 技术问答>linux和unix
100分! 谁能为我解释一下./configure 的参数--build是什么意思? 怎么使用?
来源: 互联网 发布时间:2015-10-04
本文导语: 我需要使用开源项目asn编译器snacc, asn1c。 于是安装了cygwin. 可我运行 ./configure时, 总是不行..... ./config.guess: unable to guess system type ...... .... configure: error: cannot guess build type; you must specify one; 我希...
我需要使用开源项目asn编译器snacc, asn1c。 于是安装了cygwin.
可我运行 ./configure时, 总是不行.....
./config.guess: unable to guess system type
......
....
configure: error: cannot guess build type; you must specify one;
我希望您能告诉我参数 --build=BUILD 是什么意思? 怎么使用?
system type
--build=BUILD configure for building on BUILD [guess]
--host=HOST
--target=TARGET
可我运行 ./configure时, 总是不行.....
./config.guess: unable to guess system type
......
....
configure: error: cannot guess build type; you must specify one;
我希望您能告诉我参数 --build=BUILD 是什么意思? 怎么使用?
system type
--build=BUILD configure for building on BUILD [guess]
--host=HOST
--target=TARGET
|
用来编译交叉编译器的选项
好像是
你在A 平台上(build)编译一个交叉编译器。这个编译器运行在 b平台上(host),产生能c平台(target)运行的程序
好像是
你在A 平台上(build)编译一个交叉编译器。这个编译器运行在 b平台上(host),产生能c平台(target)运行的程序