From: Timo Heister Date: Tue, 15 Jan 2019 16:20:20 +0000 (-0700) Subject: do not allow bundled X-Git-Tag: v9.1.0-rc1~435^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a2e591e974920010025e331cc859c0768b3e2ee;p=dealii.git do not allow bundled --- diff --git a/contrib/utilities/run_clang_tidy.sh b/contrib/utilities/run_clang_tidy.sh index 8741032d7a..509b3624b4 100755 --- a/contrib/utilities/run_clang_tidy.sh +++ b/contrib/utilities/run_clang_tidy.sh @@ -40,10 +40,11 @@ if test ! -d "$SRC/source" -o ! -d "$SRC/include" -o ! -d "$SRC/examples" -o ! - fi echo "SRC-DIR=$SRC" +# do not allow bundled packages, otherwise we get too many warnings from TBB/UMFPACK/etc. # disable muparser (to avoid warnings with bundled one) # enable MPI (to get MPI warnings) # export compile commands (so that run-clang-tidy.py works) -ARGS="-D DEAL_II_WITH_MUPARSER=OFF -D DEAL_II_WITH_MPI=ON -D CMAKE_EXPORT_COMPILE_COMMANDS=ON $@" +ARGS="-D DEAL_II_ALLOW_BUNDLED=OFF -D DEAL_II_WITH_MUPARSER=OFF -D DEAL_II_WITH_MPI=ON -D CMAKE_EXPORT_COMPILE_COMMANDS=ON $@" # disable performance-inefficient-string-concatenation because we don't care about "a"+to_string(5)+... CHECKS="-*,