summaryrefslogtreecommitdiffstats
path: root/util/cbfstool/Makefile.inc
diff options
context:
space:
mode:
authorManoj Gupta <manojgupta@google.com>2022-04-27 20:23:11 -0700
committerJulius Werner <jwerner@chromium.org>2022-05-02 21:02:57 +0000
commitdfb8d80c1a6514f36912610118d42e41641d01c1 (patch)
tree85c9b2e7795b2e99e379559b8cf43c846f1fd8b7 /util/cbfstool/Makefile.inc
parentaa8b1f8b38bf1abcb6dd8c6f5f510c3006d0eec6 (diff)
downloadcoreboot-dfb8d80c1a6514f36912610118d42e41641d01c1.tar.gz
coreboot-dfb8d80c1a6514f36912610118d42e41641d01c1.tar.bz2
coreboot-dfb8d80c1a6514f36912610118d42e41641d01c1.zip
utils/cbfstool: Disable Wstrict-prototypes warning
As recommended on crrev.com/c/3612466 lz4 code is not supposed to be modified. Since both gcc and clang complain about functions without explicit void in argument with Wstrict-prototypes, just disable it instead instead of enabling. BUG=b:230345382 TEST=llvm tot test BRANCH=none Signed-off-by: Manoj Gupta <manojgupta@google.com> Change-Id: I9f3ae01821447f43b4082598dd618d9f8325dca2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/63936 Reviewed-by: Julius Werner <jwerner@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/cbfstool/Makefile.inc')
-rw-r--r--util/cbfstool/Makefile.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/cbfstool/Makefile.inc b/util/cbfstool/Makefile.inc
index 3787a5657809..f3e6c75dced2 100644
--- a/util/cbfstool/Makefile.inc
+++ b/util/cbfstool/Makefile.inc
@@ -144,6 +144,8 @@ else
TOOLCFLAGS+=-std=c11
endif
+LZ4CFLAGS ?= -Wno-strict-prototypes
+
VBOOT_HOSTLIB = $(VBOOT_HOST_BUILD)/libvboot_host.a
$(VBOOT_HOSTLIB):
@@ -186,7 +188,7 @@ $(objutil)/cbfstool/%.o: $(top)/src/commonlib/bsd/%.c
$(objutil)/cbfstool/%.o: $(top)/util/cbfstool/lz4/lib/%.c
printf " HOSTCC $(subst $(objutil)/,,$(@))\n"
- $(HOSTCC) $(TOOLCPPFLAGS) $(TOOLCFLAGS) $(HOSTCFLAGS) -c -o $@ $<
+ $(HOSTCC) $(TOOLCPPFLAGS) $(TOOLCFLAGS) $(HOSTCFLAGS) $(LZ4CFLAGS) -c -o $@ $<
$(objutil)/cbfstool/%.o: $(top)/util/cbfstool/fpt_formats/%.c
printf " HOSTCC $(subst $(objutil)/,,$(@))\n"