在 make 中使用 PARALLEL

发布于 2024-10-16 23:54:08 字数 175 浏览 1 评论 0原文

我一直在研究 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 技术交流群。

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

发布评论

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

评论(1

倒数 2024-10-23 23:54:08

这是一个粗略但有效的方法:

SUBDIRS = /something /something/else /another

.PHONY: $(SUBDIRS) all

all: $(SUBDIRS)

$(SUBDIRS):
    @$(MAKE) -s -C $@

使用 make -j 运行它。

Here is a crude but effective method:

SUBDIRS = /something /something/else /another

.PHONY: $(SUBDIRS) all

all: $(SUBDIRS)

$(SUBDIRS):
    @$(MAKE) -s -C $@

Run this with make -j.

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