From 5f92777db6265321759f463e6c703111cdfc9a80 Mon Sep 17 00:00:00 2001 From: "Christopher L. Conway" Date: Thu, 1 Apr 2010 03:02:01 +0000 Subject: Adding check for --disable-shared on --enable-coverage --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index 985a26903..ecaa1bf30 100644 --- a/configure.ac +++ b/configure.ac @@ -317,6 +317,12 @@ fi AC_MSG_RESULT([$enable_coverage]) if test "$enable_coverage" = yes; then +dnl TODO: Is there someway to detect if enable_shared is set by default, +dnl so that we can automatically disable shared and enable static? + if test "$enable_shared" = yes; then + AC_MSG_ERROR([Gcov requires static libraries. Use --disable-shared.]) + fi + CVC4CPPFLAGS="$CVC4CPPFLAGS -DCVC4_COVERAGE" CVC4CXXFLAGS="$CVC4CXXFLAGS --coverage" CVC4LDFLAGS="$CVC4LDFLAGS --coverage" -- cgit v1.2.3