diff options
author | 2017-03-29 18:14:35 +0200 | |
---|---|---|
committer | 2017-03-29 18:14:35 +0200 | |
commit | 0921d7aaae5811804829cc28953dc9a139ae93c9 (patch) | |
tree | 57059e2110d6f48c413c6e1aba0e3ed662e47f27 | |
parent | 456d9e3b4731be1cf66ab05981d01f670c4d8fc6 (diff) |
2nd try (nw)
-rw-r--r-- | 3rdparty/bx/src/string.cpp | 3 | ||||
-rw-r--r-- | scripts/src/3rdparty.lua | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/3rdparty/bx/src/string.cpp b/3rdparty/bx/src/string.cpp index dbb59e5090a..b39ae253984 100644 --- a/3rdparty/bx/src/string.cpp +++ b/3rdparty/bx/src/string.cpp @@ -5,7 +5,10 @@ #include <bx/allocator.h> #include <bx/hash.h> +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wstrict-overflow" #include <bx/readerwriter.h> +#pragma GCC diagnostic pop #include <bx/string.h> #if !BX_CRT_NONE diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 62cd243b9e8..242b2b2eb7f 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -768,11 +768,6 @@ project "bx" includedirs { MAME_DIR .. "3rdparty/bx/include/compat/freebsd", } - - configuration {"linux*" } - buildoptions { - "-Wstrict-overflow=0", - } configuration { } |