From 06432c7d0b54f5e9dff0e22761241dffbfc1340e Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Fri, 26 Jun 2015 12:07:55 +0200 Subject: [PATCH] (OSX) Suppress these warnings - -Wno-invalid-source-encoding --- Makefile.common | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.common b/Makefile.common index 19baecb39f..084778e8d7 100644 --- a/Makefile.common +++ b/Makefile.common @@ -219,6 +219,10 @@ ifeq ($(HAVE_PYTHON), 1) OBJ += gfx/video_state_python.o endif +ifeq ($(OSX), 1) + DEFINES += -Wno-invalid-source-encoding +endif + ifeq ($(HAVE_EMSCRIPTEN), 1) OBJ += frontend/drivers/platform_emscripten.o \ input/drivers/rwebinput_input.o \