我可以动态更改 gnu make 并行度因子吗?
如果我不使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有办法动态改变工作数量。 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.