From 41b9f8ff9716852ff78786c2e43037f77328bab9 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 15 May 2022 16:03:38 -0400 Subject: [PATCH] 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. --- ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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:-}