我的第一个问题(yay!)是关于gnumake和并行构建的.以下是一个快速示例文件:
.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
如果我在这个家伙做了-j,我在这里正确的是确保tool_1的命令完全执行一次,然后make尝试构建任何tool_ [234]?
我正在寻找的是make -j,因为tool_1首先被构建,然后tool_ [234]被并行构建,但是没有执行三次用于tool_1的命令.我希望这是有道理的.感谢任何建议或想法!
解决方法
make -j的行为与您在问题中的期望完全一致.它不会多次依赖关系.
那个管道(|)字符在依赖列表中做什么?