]> git.webhop.me Git - bs-cst-neutrino-hd.git/commitdiff
neutrino.mk: change CFLAGS to suppress errors
authorMarkham <markham001@gmx.de>
Sat, 15 Jun 2019 19:28:18 +0000 (21:28 +0200)
committerMarkham <markham001@gmx.de>
Sat, 15 Jun 2019 19:28:18 +0000 (21:28 +0200)
make/neutrino.mk

index be8ae986f9935a216b2f24d3bd7ab817a3d1d2e0..69dbda17998727be6f9d62b22318a75fd7572d45 100755 (executable)
@@ -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