Kconfig(内核配置语言)的替代方案,用于配置/描述大型 C 软件

发布于 2024-07-17 20:36:48 字数 326 浏览 8 评论 0 原文

我对大型 C 系统的配置/构建感兴趣...

Linux 内核使用 Kconfig语言来描述各种配置选项(定义为 CONFIG_X 的宏)及其依赖项...基本上,在每个目录中,都有一个 Kconfig 文件,其中包含该子系统中定义的配置选项...

是否有其他替代方案来描述 Apache 或 *-BSD 等大型 C 系统中的配置选项? 人们一般使用什么? 最佳做法是什么?

I'm interested in the configuration/building of large C systems...

The Linux kernel uses the Kconfig language to describe the various configuration options (macros defined as CONFIG_X) and their dependencies... Basically, in each directory, there's a Kconfig file with the configuration options defined in this subsystem...

Is there any alternative to that to describe configuration options in large C systems like Apache or *-BSD ? what do people use in general ? What is the best practice ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦毁影碎の 2024-07-24 20:36:48

一般来说,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文