summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-01-10 08:20:37 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-01-10 08:20:37 +0000
commit6b25cfe5a89842b099e1ae7f6f3de3a7e70a7ce0 (patch)
treedadae02a93f17cb85bc9023fc5ef3cfa01f07580
parent37f4ca826f240b5b11d5f60777f87cac06e33b2b (diff)
add support to compile windows builds with gcc 4.8.2 x64 only produce working code (nw)
-rw-r--r--src/osd/windows/windows.mak3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/osd/windows/windows.mak b/src/osd/windows/windows.mak
index 4c9455a8f9f..2edbda6b321 100644
--- a/src/osd/windows/windows.mak
+++ b/src/osd/windows/windows.mak
@@ -285,6 +285,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
+endif
# add the windows libraries
LIBS += -luser32 -lgdi32 -ldsound -ldxguid -lwinmm -ladvapi32 -lcomctl32 -lshlwapi -lwsock32