From b06cc8da26a985f8e479fb001e719de950b28d09 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 24 Aug 2023 04:28:42 +0300 Subject: [PATCH] Ignore unused parameters warning --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d9432cf..d68c625 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,8 @@ LDFLAGS := -Wl,-Map kernel.map -static -nostdlib -nodefaultlibs -nolibc WARNCFLAG = -Wall -Wextra \ -Wfloat-equal -Wpointer-arith -Wcast-align \ -Wredundant-decls -Winit-self -Wswitch-default \ - -Wstrict-overflow=5 -Wconversion -Wno-error=cpp -Werror + -Wstrict-overflow=5 -Wconversion -Wno-error=cpp -Werror \ + -Wno-unused-parameter # https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html CFLAGS := \