From a4f86de597c4d89994bdb66edc88552316b8ea2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Tue, 2 Jul 2013 16:43:15 +0000 Subject: [PATCH] disabled some warnings for GCC 4.8 (nw) --- src/osd/sdl/sdl.mak | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/osd/sdl/sdl.mak b/src/osd/sdl/sdl.mak index 4300579a5a0..46a21769261 100644 --- a/src/osd/sdl/sdl.mak +++ b/src/osd/sdl/sdl.mak @@ -454,6 +454,9 @@ endif ifeq ($(findstring 4.7.,$(TEST_GCC)),4.7.) CCOMFLAGS += -Wno-narrowing -Wno-attributes endif +ifeq ($(findstring 4.8.,$(TEST_GCC)),4.8.) + CCOMFLAGS += -Wno-narrowing -Wno-attributes -Wno-unused-local-typedefs -Wno-unused-variable +endif endif #-------------------------------------------------