From 5277de9886f91ddf8d6bf35a15378db6713e8269 Mon Sep 17 00:00:00 2001 From: Brandon L Black Date: Thu, 4 Jan 2024 08:39:00 -0600 Subject: [PATCH] gcclyzer: don't limit to just taint Apparently I misunderstood the CLI arguments here, and this script was /only/ running the taint checker before. Now it should run all the default checkers. --- qa/gcclyzer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/gcclyzer.sh b/qa/gcclyzer.sh index dc70b9f8..2dfff1ab 100755 --- a/qa/gcclyzer.sh +++ b/qa/gcclyzer.sh @@ -7,5 +7,5 @@ if [ ! -f $PWD/qa/gdnsd.supp ]; then fi set -x set -e -CFLAGS="-fanalyzer -fanalyzer-verbosity=0 -fanalyzer-checker=taint -fanalyzer-transitivity" ./configure --enable-developer --without-hardening --with-werror +CFLAGS="-fanalyzer -fanalyzer-verbosity=0 -fanalyzer-transitivity" ./configure --enable-developer --without-hardening --with-werror make clean all