summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorLiana Hadarean <lianahady@gmail.com>2011-10-28 19:24:38 +0000
committerLiana Hadarean <lianahady@gmail.com>2011-10-28 19:24:38 +0000
commitb084a7efa9d65ec2f7475caa8486f8fd4cbafbd5 (patch)
treee118097c88787b7f2899bb8b2cbf865d058ef6bf /config
parent9547a48a7cdab8786c080779930de9c39655c52b (diff)
merged the proofgen3 branch into trunk:
- can now output LFSC checkable resolution proofs - added configuration option --enable-proof - added command line argument --proof To turn proofs on build with proofs enabled and run with --proof.
Diffstat (limited to 'config')
-rwxr-xr-xconfig/build-type3
-rw-r--r--config/cvc4.m42
2 files changed, 3 insertions, 2 deletions
diff --git a/config/build-type b/config/build-type
index 91a88faa6..2f1b27cc2 100755
--- a/config/build-type
+++ b/config/build-type
@@ -22,6 +22,7 @@
#
# staticbinary
# optimized
+# proof
# debugsymbols
# assertions
# tracing
@@ -52,7 +53,7 @@ while [ $# -gt 0 ]; do
done
build_type_suffix=
-for arg in cln staticbinary optimized debugsymbols statistics replay assertions tracing muzzle coverage profiling; do
+for arg in cln staticbinary optimized proof debugsymbols statistics replay assertions tracing muzzle coverage profiling; do
if eval [ -n '"${'$arg'+set}"' ]; then
if eval [ '"${'$arg'}"' -eq 0 ]; then
build_type_suffix=$build_type_suffix-no$arg
diff --git a/config/cvc4.m4 b/config/cvc4.m4
index b003884ed..58ab990b3 100644
--- a/config/cvc4.m4
+++ b/config/cvc4.m4
@@ -24,7 +24,7 @@ do
ac_cvc4_build_profile_set=yes
as_me=configure
AC_MSG_NOTICE([CVC4: building profile $ac_option_build])
- for x in optimized statistics replay assertions tracing dumping muzzle coverage profiling; do
+ for x in optimized proof statistics replay assertions tracing dumping muzzle coverage profiling; do
if expr "$ac_option" : '.*-no'$x'$' >/dev/null || expr "$ac_option" : '.*-no'$x'-' >/dev/null; then
eval 'ac_cvc4_rewritten_args="${ac_cvc4_rewritten_args+$ac_cvc4_rewritten_args }\"--disable-$x\""'
fi
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback