在 make 中使用 PARALLEL
我一直在研究 makefile 并试图减少它们的编译时间。我的代码的结构由各个子目录组成,每个子目录都有自己的 makefile。主目录中的子目录似乎是独立的,因为每当我在任何子目录中运行 make 时,它都运行得很好并且没有显示错误。因此,我想并行运行所有子目录的子制作。是否可以>如果是,怎么办?
先感谢您
I have been working on makefiles and trying to reduce their compilation time. The structure of the my code consists of various sub directories each having its own makefile. The subdirectories in the main directory seem to be independent as whenever i run make in any of the subdirectories, it runs perfectly fine and shows no error. Thus, i want to run the sub-make for all subdirectories in parallel. Is it possible> and if yes, how?
Thank you in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个粗略但有效的方法:
使用
make -j
运行它。Here is a crude but effective method:
Run this with
make -j
.