From: Felipe Huici Date: Thu, 13 Feb 2020 20:42:40 +0000 (+0100) Subject: Add suppress flag for cleaner build. X-Git-Tag: RELEASE-0.4^0 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=10291fc465682f3ae5538d0219ba4fc9dc9fa4b0;p=unikraft%2Flibs%2Fcompiler-rt.git Add suppress flag for cleaner build. Signed-off-by: Felipe Huici Reviewed-by: Simon Kuenzer --- diff --git a/Makefile.uk b/Makefile.uk index b929f6a..23f9e2e 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -70,7 +70,7 @@ CXXINCLUDES-$(CONFIG_LIBCOMPILER_RT) += -I$(LIBCOMPILER_RT_SRC)/include # Global flags ################################################################################ -LIBCOMPILER_RT_SUPPRESS_FLAGS += -Wno-unused-parameter +LIBCOMPILER_RT_SUPPRESS_FLAGS += -Wno-unused-parameter -Wno-builtin-declaration-mismatch LIBCOMPILER_RT_CFLAGS-y += $(LIBCOMPILER_RT_SUPPRESS_FLAGS) LIBCOMPILER_RT_CXXFLAGS-y += $(LIBCOMPILER_RT_SUPPRESS_FLAGS)