Message ID | 20210929212713.1213476-2-brendanhiggins@google.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 554afc3b9797511e3245864e32aebeb6abbab1e3 |
Headers | show |
Series | kunit: build kunit tests without structleak plugin | expand |
On Thu, Sep 30, 2021 at 5:27 AM Brendan Higgins <brendanhiggins@google.com> wrote: > > KUnit and structleak don't play nice, so add a makefile variable for > enabling structleak when it complains. > > Co-developed-by: Kees Cook <keescook@chromium.org> > Signed-off-by: Kees Cook <keescook@chromium.org> > Signed-off-by: Brendan Higgins <brendanhiggins@google.com> > --- > Changes since last revision: > - None > --- This seems as sensible a way of working around this as we're going to get in the short-term. Reviewed-by: David Gow <davidgow@google.com> Cheers, -- David
diff --git a/scripts/Makefile.gcc-plugins b/scripts/Makefile.gcc-plugins index 952e46876329a..4aad284800355 100644 --- a/scripts/Makefile.gcc-plugins +++ b/scripts/Makefile.gcc-plugins @@ -19,6 +19,10 @@ gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF) \ += -fplugin-arg-structleak_plugin-byref gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL) \ += -fplugin-arg-structleak_plugin-byref-all +ifdef CONFIG_GCC_PLUGIN_STRUCTLEAK + DISABLE_STRUCTLEAK_PLUGIN += -fplugin-arg-structleak_plugin-disable +endif +export DISABLE_STRUCTLEAK_PLUGIN gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK) \ += -DSTRUCTLEAK_PLUGIN