From eff87a4c44858cbddbbb00fb42a85c7017231faa Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Thu, 15 Oct 2020 22:54:22 -0400 Subject: [PATCH] Build with -Wno-zero_length_bounds Copying the linux kernel build settings --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index c91a06aa..cc00ac6e 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ INSTALL=install PYTEST=pytest-3 CFLAGS+=-std=gnu89 -O2 -g -MMD -Wall \ -Wno-pointer-sign \ + -Wno-zero-length-bounds \ -fno-strict-aliasing \ -fno-delete-null-pointer-checks \ -I. -Iinclude -Iraid \