Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build: V8 workaround for MSVC 14.20 bug
  • Loading branch information
refack committed Apr 12, 2019
commit a60189000c9d3a96d74d807576d6eff79b1ccaf8
16 changes: 16 additions & 0 deletions tools/v8_gypfiles/v8.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,22 @@
],
}],
],
'configurations': {
'Debug': {
'msvs_settings': {
'VCCLCompilerTool': {
'AdditionalOptions': [ '-d2SSAOptimizer-' ], # Workaround VS2019 bug https://developercommunity.visualstudio.com/content/problem/512352/compiler-doesnt-finish-142027508.html
},
},
},
'Release': {
'msvs_settings': {
'VCCLCompilerTool': {
'AdditionalOptions': [ '-d2SSAOptimizer-' ], # Workaround VS2019 bug https://developercommunity.visualstudio.com/content/problem/512352/compiler-doesnt-finish-142027508.html
},
},
},
},
}, # v8_initializers
{
'target_name': 'v8_snapshot',
Expand Down