Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

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

1 comment on commit b9655fc

@paddybyers
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, should have spotted that.

Please sign in to comment.