summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
Diffstat (limited to 'llvm')
-rw-r--r--llvm/autoconf/configure.ac7
-rwxr-xr-xllvm/configure10
2 files changed, 14 insertions, 3 deletions
diff --git a/llvm/autoconf/configure.ac b/llvm/autoconf/configure.ac
index 31edd35792b..993e41ced96 100644
--- a/llvm/autoconf/configure.ac
+++ b/llvm/autoconf/configure.ac
@@ -551,7 +551,12 @@ AC_ARG_ENABLE(clang-static-analyzer,
enableval="yes")
case "$enableval" in
yes) AC_SUBST(ENABLE_CLANG_STATIC_ANALYZER,[1]) ;;
- no) AC_SUBST(ENABLE_CLANG_STATIC_ANALYZER,[0]) ;;
+ no)
+ if test ${clang_arcmt} != "no" ; then
+ AC_MSG_ERROR([Cannot enable clang ARC Migration Tool while disabling static analyzer.])
+ fi
+ AC_SUBST(ENABLE_CLANG_STATIC_ANALYZER,[0])
+ ;;
default) AC_SUBST(ENABLE_CLANG_STATIC_ANALYZER,[1]);;
*) AC_MSG_ERROR([Invalid setting for --enable-clang-static-analyzer. Use "yes" or "no"]) ;;
esac
diff --git a/llvm/configure b/llvm/configure
index 739b150938e..d6d62ea3a26 100755
--- a/llvm/configure
+++ b/llvm/configure
@@ -5224,8 +5224,14 @@ fi
case "$enableval" in
yes) ENABLE_CLANG_STATIC_ANALYZER=1
;;
- no) ENABLE_CLANG_STATIC_ANALYZER=0
- ;;
+ no)
+ if test ${clang_arcmt} != "no" ; then
+ { { echo "$as_me:$LINENO: error: Cannot enable clang ARC Migration Tool while disabling static analyzer." >&5
+echo "$as_me: error: Cannot enable clang ARC Migration Tool while disabling static analyzer." >&2;}
+ { (exit 1); exit 1; }; }
+ fi
+ ENABLE_CLANG_STATIC_ANALYZER=0
+ ;;
default) ENABLE_CLANG_STATIC_ANALYZER=1
;;
*) { { echo "$as_me:$LINENO: error: Invalid setting for --enable-clang-static-analyzer. Use \"yes\" or \"no\"" >&5
OpenPOWER on IntegriCloud