From 04111d41f03b6de060209d417f5d18cce3ab2ea2 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Tue, 22 Aug 2023 12:41:13 -0400 Subject: Make some of the static analysis tools a little easier to run With "gcc -fanalyzer" and "scan-build", it's convenient to be able to continue even though the compiler has returned error on one or more source files. This makes it so compiler errors are ignored in some of those cases. Signed-off-by: Peter Jones --- Make.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Make.rules') diff --git a/Make.rules b/Make.rules index 7c6ec6c0..96a8649a 100644 --- a/Make.rules +++ b/Make.rules @@ -36,6 +36,6 @@ $(strip $(foreach x,$(DEFAULT_$(1)), endef %.o : %.S - $(CC) $(CFLAGS) -c -o $@ $< + $(CC) $(CFLAGS) -c -o $@ $< $(IGNORE_COMPILER_ERRORS) # vim:filetype=make -- cgit v1.2.3