Skip to content

Commit 213cb57

Browse files
Fix cmake build
cmake is failing while linking because of some dependencies between goto-programs and java_bytecode. Ideally this dependency should be removed but in the mean time the best thing to do is to add java_bytecode for the linking of goto-programs.
1 parent 9e11b41 commit 213cb57

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/goto-programs/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ add_library(goto-programs ${sources})
33

44
generic_includes(goto-programs)
55

6-
target_link_libraries(goto-programs util assembler langapi analyses ansi-c)
6+
target_link_libraries(
7+
goto-programs util assembler langapi analyses ansi-c java_bytecode)

0 commit comments

Comments
 (0)