From d992db02b6904e12fd3fa874c80246b02dc888b5 Mon Sep 17 00:00:00 2001 From: satmandu Date: Thu, 30 May 2019 16:56:22 -0400 Subject: [PATCH] Add -Wno-vla to avoid more compilation warnings as per 5.3.4 Makefile --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index baadb92..ed7752c 100755 --- a/Makefile +++ b/Makefile @@ -20,6 +20,8 @@ ifeq ($(GCC_VER_49),1) EXTRA_CFLAGS += -Wno-date-time # Fix compile error && warning on gcc 4.9 and later endif +EXTRA_CFLAGS += -Wno-vla + EXTRA_CFLAGS += -I$(src)/include EXTRA_LDFLAGS += --strip-debug