diff options
author | 2013-07-08 23:32:47 +0000 | |
---|---|---|
committer | 2013-07-08 23:32:47 +0000 | |
commit | bd549978c53bb1181d34eadb00578e69c1fbae20 (patch) | |
tree | c1f81a34ed45ff1e9824f5e136d0fb828d09d7df /src/osd/sdl/sdl.mak | |
parent | 11416b9d26309850c23f8cd152e2a51b2ebdf1fb (diff) |
Initial support for Fedora 19 / GCC 4.8.1 [R. Belmont]
Diffstat (limited to 'src/osd/sdl/sdl.mak')
-rw-r--r-- | src/osd/sdl/sdl.mak | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/osd/sdl/sdl.mak b/src/osd/sdl/sdl.mak index 46a21769261..16b6c9e7904 100644 --- a/src/osd/sdl/sdl.mak +++ b/src/osd/sdl/sdl.mak @@ -454,8 +454,10 @@ endif ifeq ($(findstring 4.7.,$(TEST_GCC)),4.7.) CCOMFLAGS += -Wno-narrowing -Wno-attributes endif + +# array bounds checking seems to be buggy in 4.8.1 (try it on video/stvvdp1.c and video/model1.c without -Wno-array-bounds) ifeq ($(findstring 4.8.,$(TEST_GCC)),4.8.) - CCOMFLAGS += -Wno-narrowing -Wno-attributes -Wno-unused-local-typedefs -Wno-unused-variable + CCOMFLAGS += -Wno-narrowing -Wno-attributes -Wno-unused-local-typedefs -Wno-unused-variable -Wno-array-bounds -Wno-strict-overflow endif endif |