Ignore missing noreturn and unused functions.

This commit is contained in:
nah
2016-09-04 10:20:31 -05:00
parent 65f0febf03
commit 7552c187fb

View File

@ -3,7 +3,7 @@ ifeq ($(shell uname -s), Darwin)
CC = clang
CFLAGS += -std=c99 -pedantic -Wall -Weverything -Werror
CFLAGS += -Wno-unknown-warning-option -Wno-switch-enum
CFLAGS += -Wno-padded -Wno-double-promotion
CFLAGS += -Wno-padded -Wno-double-promotion -Wno-missing-noreturn -Wno-unused-function
endif
ifeq ($(shell uname -s), Linux)
CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror