配置文件上 --host 参数的有效参数列表
我正在寻找在配置脚本上指定主机时可以使用的有效参数列表。例如,我可以做这样的事情:
./configure --host=alpha-netbsd
这将设置平台和系统,但是还有什么其他选项呢? (我还应该指定我使用的是 OSX)。
I am looking for a list of valid arguments I can use when specifying a host on a configure script. For example I could do something like this:
./configure --host=alpha-netbsd
And that would set the platform and the system, but what other options are there? (I should also specify I am on OSX).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管迟到且问题不完整,但希望它仍然可以帮助某人。
这些不是所有可能的 --host 参数值(配置名称)的有限列表。组合基本上是无限的,因为 autoconf 实现了对配置名称的某种识别(猜测)。
您可以阅读 autoconf 手册中的以下部分:
如果你真的对 autoconf 的实现感兴趣,你可以查看 autoconf 存储库:
LK
Though being late and incomplete question, hope it may still help someone.
These is no finite list of all possible --host parameter values (configuration names). The combinations are basically infinite, because autoconf implements sort of recognition (guessing) of the configuration name.
You can read the following section in autoconf manual:
If you are really interested in implementation of autoconf, you can peek to autoconf repository:
LK