Skip to content

Commit

Permalink
build: fix windows build, disable postmortem
Browse files Browse the repository at this point in the history
Always define v8_postmortem_support, even if the platform does not
support it. Commit d8852aa adds a rule that references it in node.gyp.

Fixes the Windows build.
  • Loading branch information
bnoordhuis committed Apr 4, 2013
1 parent d8852aa commit b9655fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion common.gypi
Expand Up @@ -17,7 +17,9 @@

# Enable V8's post-mortem debugging only on unix flavors.
'conditions': [
['OS != "win"', {
['OS == "win"', {
'v8_postmortem_support': 'false'
}, {
'v8_postmortem_support': 'true'
}]
],
Expand Down

0 comments on commit b9655fc

Please sign in to comment.