1
0
mirror of https://github.com/ThrowTheSwitch/Unity synced 2025-03-12 16:11:12 -04:00

Ignore unused functions on linux.

This commit is contained in:
nah 2016-09-04 10:25:31 -05:00
parent f0f9f20421
commit 794e533ab5

View File

@ -7,6 +7,7 @@ CFLAGS += -Wno-padded -Wno-double-promotion -Wno-missing-noreturn -Wno-unused-fu
endif
ifeq ($(shell uname -s), Linux)
CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror
CFLAGS += -Wno-unused-function
endif
#DEBUG = -O0 -g
CFLAGS += $(DEBUG)