diff options
| -rw-r--r-- | BuildTools/SCons/SConscript.boot | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/BuildTools/SCons/SConscript.boot b/BuildTools/SCons/SConscript.boot index 80831a1..411fb7d 100644 --- a/BuildTools/SCons/SConscript.boot +++ b/BuildTools/SCons/SConscript.boot | |||
| @@ -282,6 +282,8 @@ if env["debug"] : | |||
| 282 | 282 | ||
| 283 | if env["PLATFORM"] == "win32" : | 283 | if env["PLATFORM"] == "win32" : |
| 284 | env.AppendUnique(CCFLAGS = ["/{}".format(env.get("msvc_runtime"))]) | 284 | env.AppendUnique(CCFLAGS = ["/{}".format(env.get("msvc_runtime"))]) |
| 285 | # debug builds against debug MSVC runtime can cause some more sections in the object file | ||
| 286 | env.AppendUnique(CCFLAGS = ["/bigobj"]) | ||
| 285 | 287 | ||
| 286 | if env.get("universal", 0) : | 288 | if env.get("universal", 0) : |
| 287 | assert(env["PLATFORM"] == "darwin") | 289 | assert(env["PLATFORM"] == "darwin") |
Swift