about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2016-01-14 12:38:20 +0000
committerDan Liew <daniel.liew@imperial.ac.uk>2016-01-14 12:38:20 +0000
commitc675254acb9f688d761dd7266738e7adacac97e7 (patch)
treea84f2a92251a64ac6d6b1d9f167f50b1bb00833d
parentb9453efe7ca4c838e5f31e682792eda6259133a6 (diff)
downloadklee-c675254acb9f688d761dd7266738e7adacac97e7.tar.gz
Output a message reporting if the MetaSMT backend is enabled when
running the Configure script.
-rw-r--r--autoconf/configure.ac2
-rwxr-xr-xconfigure4
2 files changed, 6 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 13d6f945..0cf08a60 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -626,6 +626,7 @@ AC_ARG_WITH(metasmt,
 
 if test X$with_metasmt = X ; then
   ENABLE_METASMT=0
+  AC_MSG_NOTICE([Not using MetaSMT solver backend])
 else
   metasmt_root=`(cd $with_metasmt && pwd) 2> /dev/null`
   #Check for bad path
@@ -651,6 +652,7 @@ else
   AC_SUBST(METASMT_ROOT,$metasmt_root)
   AC_SUBST(REQUIRES_RTTI,[[1]])
   ENABLE_METASMT=1
+  AC_MSG_NOTICE([Using MetaSMT solver backend])
 fi
 
 AC_SUBST(ENABLE_METASMT)
diff --git a/configure b/configure
index 832c35e5..ce8a2d72 100755
--- a/configure
+++ b/configure
@@ -5030,6 +5030,8 @@ fi
 
 if test X$with_metasmt = X ; then
   ENABLE_METASMT=0
+  { $as_echo "$as_me:${as_lineno-$LINENO}: Not using MetaSMT solver backend" >&5
+$as_echo "$as_me: Not using MetaSMT solver backend" >&6;}
 else
   metasmt_root=`(cd $with_metasmt && pwd) 2> /dev/null`
   #Check for bad path
@@ -5088,6 +5090,8 @@ $as_echo "#define ENABLE_METASMT 1" >>confdefs.h
   REQUIRES_RTTI=1
 
   ENABLE_METASMT=1
+  { $as_echo "$as_me:${as_lineno-$LINENO}: Using MetaSMT solver backend" >&5
+$as_echo "$as_me: Using MetaSMT solver backend" >&6;}
 fi