From 8ffa6b2bb73b8059b9db060abac93989b33b2761 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 3 Dec 2013 10:46:48 -0800 Subject: [PATCH] Add a flag to Mac build to eliminate an unnecessary build warning. --- Makefile.mac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.mac b/Makefile.mac index 4a5a4c6d2..f0f56810e 100644 --- a/Makefile.mac +++ b/Makefile.mac @@ -6,7 +6,7 @@ DEFS= LIBS=-lm # Uncomment for a release optimized universal binary build -CFLAGS=-arch i386 -arch x86_64 -Wall -O4 -pthread -mmacosx-version-min=10.6 -DNDEBUG $(INCLUDES) $(DEFS) +CFLAGS=-arch i386 -arch x86_64 -Wall -O4 -pthread -mmacosx-version-min=10.6 -DNDEBUG -Wno-unused-private-field $(INCLUDES) $(DEFS) STRIP=strip # Uncomment for a debug build