Skip to content

Commit b9655fc

Browse files
committed
build: fix windows build, disable postmortem
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.
1 parent d8852aa commit b9655fc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

common.gypi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717

1818
# Enable V8's post-mortem debugging only on unix flavors.
1919
'conditions': [
20-
['OS != "win"', {
20+
['OS == "win"', {
21+
'v8_postmortem_support': 'false'
22+
}, {
2123
'v8_postmortem_support': 'true'
2224
}]
2325
],

0 commit comments

Comments
 (0)