开发者

Parallel building with gnumake and prerequisites

开发者 https://www.devze.com 2022-12-17 17:00 出处:网络
My first question (yay!) is about gnumake and parallel builds.Here\'s a quick example file: .PHONY: tool_1 tool_2 tool_3 tool_4 all tools

My first question (yay!) is about gnumake and parallel builds. Here's a quick example file:

.PHONY: tool_1 tool_2 tool_3 tool_4 all tools

all: | tools

tools: | tool_2 tool_3 tool_4

tool_1:
    # commands for tool 1

tool_2: | tool_1
    # commands for tool 2

tool_3: | tool_1
    # commands for tool 3

tool_4: | tool_1
    # commands for tool 4

If I do make -j on this guy, is what I have here correct to ensure that the commands for tool_1 are executed exactly once, and before make tries to build any of tool_[234]?

What I'm looking for is to have make -j cause tool_1 to be built first, then to开发者_如何转开发ol_[234] to be built in parallel, but without executing the commands for tool_1 three times. I hope that makes sense. Thanks for any suggestions or ideas!


make -j behaves exactly as you expect in your question. It does not make dependencies multiple times.

What does that pipe (|) character do in your dependency list?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号