diff options
Diffstat (limited to 'tools/kleaver/Makefile')
-rw-r--r-- | tools/kleaver/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/kleaver/Makefile b/tools/kleaver/Makefile index 0bb184bb..d9c417c1 100644 --- a/tools/kleaver/Makefile +++ b/tools/kleaver/Makefile @@ -9,11 +9,12 @@ LEVEL=../.. TOOLNAME = kleaver +STP_LIBS := stp_c_interface.a stp_AST.a stp_bitvec.a stp_constantbv.a stp_sat.a \ + stp_simplifier.a # FIXME: Ideally we wouldn't have any LLVM dependencies here, which # means kicking out klee's Support. -USEDLIBS = kleaverSolver.a kleaverExpr.a kleeSupport.a kleeBasic.a +USEDLIBS = kleaverSolver.a kleaverExpr.a kleeSupport.a kleeBasic.a \ + $(STP_LIBS) LINK_COMPONENTS = support include $(LEVEL)/Makefile.common - -LIBS += -lstp |