From d744dc32e2ac716aa2d7852cf3187b3c5b719995 Mon Sep 17 00:00:00 2001 From: Shengwen Cheng Date: Thu, 8 Feb 2024 00:41:13 +0800 Subject: [PATCH] Suppress array-bounds warning temporarily --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c3275e97..71837367 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,8 @@ CFLAGS += -Wall \ -Werror=undef \ -Wno-unused-function \ -Wno-format-truncation \ - -Wno-address-of-packed-member + -Wno-address-of-packed-member \ + -Wno-array-bounds # FIXME CFLAGS += -D USE_STDPERIPH_DRIVER CFLAGS += -D STM32F4xx CFLAGS += -D ARM_MATH_CM4 \