Kconfig(内核配置语言)的替代方案,用于配置/描述大型 C 软件
我对大型 C 系统的配置/构建感兴趣...
Linux 内核使用 Kconfig语言来描述各种配置选项(定义为 CONFIG_X 的宏)及其依赖项...基本上,在每个目录中,都有一个 Kconfig 文件,其中包含该子系统中定义的配置选项...
是否有其他替代方案来描述 Apache 或 *-BSD 等大型 C 系统中的配置选项? 人们一般使用什么? 最佳做法是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,autotools(参见autotools book),即GNU autoconf、automake、libtool很常见。 它们非常灵活,但启动和运行起来可能会很困难。 有了这些,您通常会得到一个“配置”脚本,最终用户可以使用该脚本来指定如何构建软件(例如../configure --with-foo --disable-bar)。
CMake 越来越受欢迎,尤其是 KDE 使用的。
当然还有无数其他的。
Generally, autotools (see autotools book), i.e. GNU autoconf, automake, libtool are quite common. They are pretty flexible, but can be quite a handful to get up and running. With these you typically get a "configure" script that the end user can use to specify how to build the software (say. ./configure --with-foo --disable-bar).
CMake is increasingly popular, most notably used by KDE.
There are of course countless others as well.