Skip to content

Commit 4ca7c9b

Browse files
committed
Fix build dependencies of symtab2gb
Depending on the exact order of building directories, Makefile-based builds of symtab2gb would sometimes fail as json.a had not been built (and no rule for building it was present).
1 parent 1b4de42 commit 4ca7c9b

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
@@ -88,7 +88,8 @@ goto-cc.dir: languages goto-programs.dir linking.dir
8888

8989
memory-analyzer.dir: util.dir goto-programs.dir ansi-c.dir
9090

91-
symtab2gb.dir: util.dir goto-programs.dir json-symtab-language.dir
91+
symtab2gb.dir: util.dir goto-programs.dir langapi.dir linking.dir \
92+
json.dir json-symtab-language.dir
9293

9394
# building for a particular directory
9495

0 commit comments

Comments
 (0)