我可以动态更改 gnu make 并行度因子吗?

发布于 2024-12-28 20:40:47 字数 207 浏览 0 评论 0原文

如果我不使用 distcc,我想使用 -j8 运行我的 make,但如果启用了 distcc,我想使用 -j40 运行我的 make。

如果我直到深入执行 makefile 才弄清楚是否可以使用 distcc,是否有办法在后期更改 -j 因子?或者在调用 make 之前我是否必须在包装脚本中做出决定? (我真的不想递归地运行 make,并在子 make 中使用不同的 -j 因子)。

I want to run my make with -j8 if I'm not using distcc, but -j40 if distcc is enabled.

If I don't figure out whether or not I can use distcc until deep in the execution of the makefile, is there a way to change the -j factor at that late date? Or do I have to make the decision in a wrapper script before I invoke make? (I really don't want to run make recursively, with a different -j factor in the sub-make).

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

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

发布评论

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

评论(1

莫多说 2025-01-04 20:40:47

没有办法动态改变工作数量。 jobserver 是在 make 开始时配置的,并且在不重新启动 make 的情况下不可能将其重新配置为不同的大小。

There's no way to change the number of jobs on the fly. The jobserver is configured right at the beginning of make, and it's not possible to reconfigure it with a different size without restarting make.

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