diff options
author | 2018-05-14 20:18:24 +0700 | |
---|---|---|
committer | 2018-05-14 09:18:24 -0400 | |
commit | 4f9ef3e373cde3783aa73d3afd39422f735b1402 (patch) | |
tree | 8ad184395038d29da89c2a35f7e863e0f62b7f0b /scripts/src/3rdparty.lua | |
parent | fde607a7594b012ed03870362b079e0d999b28fa (diff) |
softfloat3: fix msvc build (nw) (#3566)
* softfloat3: fix msvc build (nw)
Is this how we do these things? I assume we don't touch the library code itself, and have to "fix" any problems via this header instead?
* softfloat3: do we like this better? (nw)
* softfloat3: it gets the hose again (nw)
* softfloat3: sonofa (nw)
Diffstat (limited to 'scripts/src/3rdparty.lua')
-rw-r--r-- | scripts/src/3rdparty.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 94879049604..7c1cc4acf4c 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -196,6 +196,12 @@ includedirs { MAME_DIR .. "3rdparty/softfloat3/source/8086", } +configuration { "vs*" } +buildoptions { + "/wd4701", -- warning C4701: potentially uninitialized local variable 'xxx' used + "/wd4703", -- warning C4703: potentially uninitialized local pointer variable 'xxx' used +} + configuration { } defines { "SOFTFLOAT_ROUND_ODD", |