From f9291c2bd40677b5feae597a0b01b28ad7e1da2f Mon Sep 17 00:00:00 2001 From: kimocoder Date: Mon, 20 Jan 2020 21:44:46 +0100 Subject: [PATCH] More compiler silence removed. Issued should be fixed, not silenced. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 47d3cae..91426bf 100755 --- a/Makefile +++ b/Makefile @@ -6,13 +6,13 @@ EXTRA_CFLAGS += -Wno-unused-label EXTRA_CFLAGS += -Wno-unused-parameter EXTRA_CFLAGS += -Wno-unused-function EXTRA_CFLAGS += -Wno-unused -EXTRA_CFLAGS += -Wno-uninitialized +#EXTRA_CFLAGS += -Wno-uninitialized EXTRA_CFLAGS += -Wno-vla -g -EXTRA_CFLAGS += -Wno-tautological-compare -EXTRA_CFLAGS += -Wno-incompatible-pointer-types +#EXTRA_CFLAGS += -Wno-tautological-compare +#EXTRA_CFLAGS += -Wno-incompatible-pointer-types # Relax some warnings from '-Wextra' so we won't get flooded with warnings -EXTRA_CFLAGS += -Wno-sign-compare -Wno-sign-conversion -EXTRA_CFLAGS += -Wno-type-limits +#EXTRA_CFLAGS += -Wno-sign-compare -Wno-sign-conversion +#EXTRA_CFLAGS += -Wno-type-limits #GCC_VER_49 := $(shell echo `$(CC) -dumpversion | cut -f1-2 -d.` \>= 4.9 | bc ) #ifeq ($(GCC_VER_49),1)