Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/cbmc
Submodule cbmc updated from 2b050a to f17599
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DIRS = symex
DIRS = symex path-symex
CPROVER_DIR ?= lib/cbmc/src
export CPROVER_DIR

Expand Down
6 changes: 3 additions & 3 deletions src/path-symex/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ SRC = build_goto_trace.cpp \
var_map.cpp \
# Empty last line

INCLUDES= -I ..
INCLUDES= -I ../../$(CPROVER_DIR) -I ../

include ../config.inc
include ../common
include ../../$(CPROVER_DIR)/config.inc
include ../../$(CPROVER_DIR)/common

CLEANFILES = path-symex$(LIBEXT)

Expand Down
13 changes: 11 additions & 2 deletions src/symex/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,18 @@ OBJ += ../../$(CPROVER_DIR)/ansi-c/ansi-c$(LIBEXT) \
../../$(CPROVER_DIR)/goto-symex/rewrite_union$(OBJEXT) \
../../$(CPROVER_DIR)/pointer-analysis/dereference$(OBJEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover$(OBJEXT) \
../../$(CPROVER_DIR)/path-symex/path-symex$(LIBEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover_basic_blocks$(OBJEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover_filter$(OBJEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover_instrument_branch$(OBJEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover_instrument_condition$(OBJEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover_instrument_decision$(OBJEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover_instrument_location$(OBJEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover_instrument_mcdc$(OBJEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover_instrument_other$(OBJEXT) \
../../$(CPROVER_DIR)/goto-instrument/cover_util$(OBJEXT) \
../../$(CPROVER_DIR)/miniz/miniz$(OBJEXT) \
../../$(CPROVER_DIR)/json/json$(LIBEXT)
../../$(CPROVER_DIR)/json/json$(LIBEXT) \
../path-symex/path-symex$(LIBEXT)

INCLUDES= -I .. -I ../../$(CPROVER_DIR)

Expand Down
1 change: 1 addition & 0 deletions src/symex/symex_parse_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Author: Daniel Kroening, kroening@kroening.com

#include <goto-programs/goto_model.h>
#include <goto-programs/show_goto_functions.h>
#include <goto-programs/rebuild_goto_start_function.h>

#include <analyses/goto_check.h>

Expand Down