Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedor Indutny <fedor@indutny.com>2015-02-03 16:59:35 +0300
committerFedor Indutny <fedor@indutny.com>2015-02-03 19:25:27 +0300
commit6a5d731f602b547074f4367a7eb3964395080c94 (patch)
treee3ee6cddc5313b55bf7f197d2a076a047247367c /common.gypi
parent8b88ff85f106eed03bf677b9ab3b842f4edbdc6b (diff)
gyp: enable postmortem support, fix dtrace paths
Fix: iojs/io.js#461 PR-URL: https://github.com/iojs/io.js/pull/706 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi5
1 files changed, 2 insertions, 3 deletions
diff --git a/common.gypi b/common.gypi
index e323fc3a6c4..ea7779ee097 100644
--- a/common.gypi
+++ b/common.gypi
@@ -23,14 +23,13 @@
# Don't bake anything extra into the snapshot.
'v8_use_external_startup_data%': 0,
- # Disable V8's post-mortem debugging; frequently broken and hardly used.
- 'v8_postmortem_support%': 'false',
-
'conditions': [
['OS == "win"', {
'os_posix': 0,
+ 'v8_postmortem_support%': 'false',
}, {
'os_posix': 1,
+ 'v8_postmortem_support%': 'true',
}],
['GENERATOR == "ninja" or OS== "mac"', {
'OBJ_DIR': '<(PRODUCT_DIR)/obj',