Skip to content

Commit 132bd68

Browse files
committed
Makefile builds: memory-analyzer requires linking.dir
With the undeclared build dependency, parallel builds would sometimes fail, depending on the exact time the subdirectories completed their build steps. Avoid this problem by properly declaring the dependency.
1 parent 06d8ac7 commit 132bd68

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ goto-diff.dir: languages goto-programs.dir pointer-analysis.dir \
8787

8888
goto-cc.dir: languages goto-programs.dir linking.dir
8989

90-
memory-analyzer.dir: util.dir goto-programs.dir ansi-c.dir
90+
memory-analyzer.dir: util.dir goto-programs.dir langapi.dir linking.dir \
91+
ansi-c.dir
9192

9293
symtab2gb.dir: util.dir goto-programs.dir langapi.dir linking.dir \
9394
json.dir json-symtab-language.dir

0 commit comments

Comments
 (0)