并行 make 文件中的关键部分

发布于 2024-11-08 15:15:20 字数 161 浏览 0 评论 0原文

我正在尝试并行化旧的 Makefile。

事实上,我需要确保在编译过程开始之前某些生成器脚本被调用非并行

生成器总是在编译之前调用。有什么方法可以在 makefile 中建立一些关键部分吗?

Makefile 很乱,我不想把它发布在这里。

I am trying to parallelize an old Makefile.

In fact I need to make sure that some generator scripts are called not parallel before the compiling procedure starts.

The generators are always called before the compile. Is there any way to establish a somewhat critical section in a makefile?

The Makefile is messy, I'd prefer not to post it here.

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

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

发布评论

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

评论(2

花间憩 2024-11-15 15:15:20

您可以将生成文件的规则放在单独的 Makefile 中,并执行如下操作:

generated-sources :
        $(MAKE) -f Makefile.Generators

但是,对于 GNU Make,默认情况下这将是并行的。您需要抑制它,并且手册并不清楚您将如何做到这一点。也许以下的某种组合会起作用,具体取决于您希望支持的 make 的实现:

  • 传递 -j1 标志:

    生成源:
            $(MAKE) -j1 -f Makefile.Generators
    
  • 抑制 MAKEFLAGS 选项:

    生成源:
            $(MAKE) -f Makefile.Generators MAKEFLAGS=
    
  • Makefile.Generators 中使用以下行抑制并行执行:

    <前><代码>.NOTPARALLEL:

You could put the rules for the generated files in a separate Makefile, and do something like this:

generated-sources :
        $(MAKE) -f Makefile.Generators

However, with GNU Make, this will be parallel by default. You'll need to suppress it, and the manual isn't exactly clear how you would do that. Maybe some combination of the following would work, depending on which implementations of make you wish to support:

  • Pass the -j1 flag:

    generated-sources :
            $(MAKE) -j1 -f Makefile.Generators
    
  • Suppress MAKEFLAGS options:

    generated-sources :
            $(MAKE) -f Makefile.Generators MAKEFLAGS=
    
  • Suppress parallel execution with the following line in Makefile.Generators:

    .NOTPARALLEL :
    

您可以制定运行所有脚本的规则,然后确保所有其他规则都依赖于该规则。

all: ${SOURCES} scripts

scripts: last_script


first_script:
    ./script1.sh

second_script: first_script
    ./script2.sh

last_script: second_script
    ./script3.sh

source1.o: source1.c scripts
    gcc source1.c -c -o source1.o

You can make a rule that runs all of the scripts, and then make sure all of your other rules depend on that rule.

all: ${SOURCES} scripts

scripts: last_script


first_script:
    ./script1.sh

second_script: first_script
    ./script2.sh

last_script: second_script
    ./script3.sh

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