diff options
| author | 2017-05-16 07:55:24 +0100 | |
|---|---|---|
| committer | 2017-05-16 07:56:04 +0100 | |
| commit | dc1dcd260b8209b006e7958cf2226438ced490c2 (patch) | |
| tree | 68a03a7c141a80b3c4b804db0a27eb48f2746152 | |
| parent | 691ad34a256d5ef1031fc01c729d41932260597d (diff) | |
fix MSVC debug builds by specifying /bigobj (needed for mpu4). Release builds don't seem to require it. (nw)
| -rw-r--r-- | scripts/genie.lua | 3 | ||||
| -rw-r--r-- | scripts/src/mame/frontend.lua | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index e905e3b6aef..b1b435d521e 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -482,6 +482,9 @@ configuration { "Debug", "vs*" } "Symbols", "NoIncrementalLink", } + buildoptions { + "/bigobj", + } configuration { "Release", "vs*" } flags { diff --git a/scripts/src/mame/frontend.lua b/scripts/src/mame/frontend.lua index 3af66578ad6..9e0144916a4 100644 --- a/scripts/src/mame/frontend.lua +++ b/scripts/src/mame/frontend.lua @@ -43,10 +43,6 @@ includedirs { MAME_DIR .. "3rdparty/asio/include", } -configuration { "vs*" } - buildoptions { - "/bigobj", - } configuration { } if (_OPTIONS["targetos"] == "windows") then defines { |
