From dfa69ff98a14fcc0f2387e59a0c9994ef440e7d0 Mon Sep 17 00:00:00 2001 From: Aina Niemetz Date: Fri, 25 Aug 2017 15:39:16 -0700 Subject: Move LFSC checker out of the CVC repository. (#222) LFSC now lives outside of the CVC4 repository and is not part of the CVC4 distribution anymore. As a consequence, we + Add --with-lfsc and --with-lfsc-directory as configure options. In the case where CVC4 has not been built with integrated LFSC, all code that interacts with LFSC is disabled. + Disable proof checking if CVC4_USE_LFSC is not defined. Configuring the build with --check-proofs but without --with-lfsc results in an error. + Do not call LFSC's cleanup function (but we should in the future). LFSC checker segfaults during cleanup on regression testcase regress0/bv/core/bitvec7.smt. Disabled call to lfscc_cleanup until the problem in lfscc is fixed. + Disable building with LFSC for the distcheck travis build since it is not part of the distribution anymore. Further, make distcheck with LFSC would require to call contrib/get-lfsc-checker before calling make check on the temp build (the build of the unpacked distribution tar ball). --- Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index bface9536..e975455ec 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,11 +7,12 @@ ACLOCAL_AMFLAGS = -I config SUBDIRS_BASE = src test contrib if CVC4_PROOF - SUBDIRS = proofs/signatures proofs/lfsc_checker $(SUBDIRS_BASE) + SUBDIRS = proofs/signatures $(SUBDIRS_BASE) else SUBDIRS = $(SUBDIRS_BASE) endif -DIST_SUBDIRS = proofs/signatures proofs/lfsc_checker $(SUBDIRS_BASE) examples +DIST_SUBDIRS = $(SUBDIRS) examples + .PHONY: examples examples: all -- cgit v1.2.3