Skip to content

Commit 5392bb3

Browse files
committed
Update dependencies for memory-analyzer
There has been a concurrency issue for one of the Travis CI builds. The ansi-c lib was not available, when travis tried to build the memory-analyzer binary.
1 parent 676fa99 commit 5392bb3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ goto-diff.dir: languages goto-programs.dir pointer-analysis.dir \
6464

6565
goto-cc.dir: languages pointer-analysis.dir goto-programs.dir linking.dir
6666

67-
memory-analyzer.dir: util.dir goto-programs.dir
67+
memory-analyzer.dir: util.dir goto-programs.dir ansi-c.dir
6868

6969
# building for a particular directory
7070

src/memory-analyzer/Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@ INCLUDES= -I ..
99
LIBS = \
1010
../ansi-c/ansi-c.a \
1111
../goto-programs/goto-programs.a \
12-
../linking/linking.a \
1312
../util/util.a \
1413
../big-int/big-int.a \
15-
../langapi/langapi.a
16-
14+
1715

1816

1917
CLEANFILES = memory-analyzer$(EXEEXT)

0 commit comments

Comments
 (0)