From: Markham Date: Sat, 15 Jun 2019 19:28:18 +0000 (+0200) Subject: neutrino.mk: change CFLAGS to suppress errors X-Git-Url: https://git.webhop.me/?a=commitdiff_plain;h=6d0096fb00e22b8dd257c0e95fbce68b68898f33;p=bs-cst-neutrino-hd.git neutrino.mk: change CFLAGS to suppress errors --- diff --git a/make/neutrino.mk b/make/neutrino.mk index be8ae98..69dbda1 100755 --- a/make/neutrino.mk +++ b/make/neutrino.mk @@ -1,8 +1,10 @@ #Makefile to build NEUTRINO -N_CFLAGS = -Wall -Wextra -Wshadow -Wsign-compare -ifeq ($(BOXTYPE), coolstream) -#N_CFLAGS += -Werror +N_CFLAGS = -Wall -Wextra -Wshadow -Wsign-compare -Werror + +ifeq ($(BOXSERIES), $(filter $(BOXSERIES), hd2 hd51)) +N_CFLAGS += -Wformat-truncation=0 -Wno-ignored-qualifiers +N_CFLAGS += -Wno-int-in-bool-context -Wno-cast-function-type endif N_CFLAGS += -O2