运行./configure时可以跳过“检查...”步骤吗?


6

 

$ ./configure
configure: configuring for GNU Wget 1.11
checking build system type... i686-apple-darwin10.0.0
checking host system type... i686-apple-darwin10.0.0
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for gcc... gcc

有没有办法在运行configure时跳过“检查...”消息?我知道检查是有原因的,但是当想要快速编译某些东西时,在配置“检查AIX”或者编译器是否支持long数据类型时必须等待是一件痛苦的事情。我想不是,因为检查可能用于确定gcc等的路径等。

我知道你可以用--quiet这个消息来沉默,但这不是我想要的,

  -q, --quiet, --silent   do not print `checking...' messages

1
所以,简而言之,你很匆忙,你希望机器为你构建软件而不知道它应该建立的规范?听起来对我来说是个好主意...
Telemachus

Answers:



3

autoconf用于提供一种确定正在编译应用程序的主机的功能的方法。跳过这些检查意味着它不知道构建目标的功能。

如上所述,您可以缓存结果,但是您需要至少运行一次以填充缓存。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.