From: Colin Walters Date: Sun, 15 May 2022 20:03:38 +0000 (-0400) Subject: ci: Drop gcc `-fanalyzer` by default X-Git-Tag: archive/raspbian/2022.4-1+rpi1^2~9^2^2~17^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=41b9f8ff9716852ff78786c2e43037f77328bab9;p=ostree.git ci: Drop gcc `-fanalyzer` by default There's a pile of new warnings in GCC 12 from F36, I dug into them but most of them seem inscrutable - I am not seeing the bugs. For now to unblock further work, stop using this flag. --- diff --git a/ci/build.sh b/ci/build.sh index ffdeba01..2afcd018 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -30,6 +30,6 @@ esac # always fail on warnings; https://github.com/ostreedev/ostree/pull/971 # NB: this disables the default set of flags from configure.ac -export CFLAGS="-Wall -Werror -fanalyzer ${CFLAGS:-}" +export CFLAGS="-Wall -Werror ${CFLAGS:-}" build --enable-gtk-doc ${CONFIGOPTS:-}