【发布时间】:2011-07-14 12:45:39
【问题描述】:
make 程序有一个标志,它会导致编译尽可能多地显示尽可能多的错误。
来自make(1):
-k, --keep-going
Continue as much as possible after an error. While the target
that failed, and those that depend on it, cannot be remade, the
other dependencies of these targets can be processed all the same.
我想知道是否可以做任何事情来从 ./configure 脚本中获得相同的行为。
我试图 ./configure Pidgin 从源代码安装它。但是配置脚本一直困扰着我关于我不需要的依赖项,我唯一的解决方案是给配置脚本提供--disable 标志。
这就是为什么我想尽可能地运行配置脚本,以便它可以立即通知我所有依赖项。这样我就可以一次性选择需要--disable 和需要安装哪些,而不必为每个未满足的依赖项运行配置脚本。
这可能吗?
【问题讨论】:
标签: build compilation makefile dependencies configure