Index: build-v8.gypi |
diff --git a/build-v8.gypi b/build-v8.gypi |
index 427495145be58f6f3870dcfc0813b3bc35fde6b8..b0e7ddd7a5e47a58e264fa9de117d05e39291381 100644 |
--- a/build-v8.gypi |
+++ b/build-v8.gypi |
@@ -11,6 +11,21 @@ |
'conditions': [ |
['OS=="win"', { |
'target_defaults': { |
+ 'configurations': { |
+ 'Debug': { |
+ 'conditions': [ |
+ ['target_arch=="x64"', { |
+ 'msvs_settings': { |
+ 'VCCLCompilerTool': { |
+ 'AdditionalOptions': [ |
+ '/bigobj', # compiling fatal error C1128: number of sections exceeded object file format limit: compile with /bigobj |
+ ] |
+ } |
+ } |
+ }] |
+ ], |
+ } |
+ }, |
'msvs_settings': { |
'VCCLCompilerTool': { |
'WarningLevel': 0, |