diff options
author | Fedor Indutny <fedor@indutny.com> | 2015-02-03 16:59:35 +0300 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2015-02-03 19:25:27 +0300 |
commit | 6a5d731f602b547074f4367a7eb3964395080c94 (patch) | |
tree | e3ee6cddc5313b55bf7f197d2a076a047247367c /common.gypi | |
parent | 8b88ff85f106eed03bf677b9ab3b842f4edbdc6b (diff) | |
download | node-new-6a5d731f602b547074f4367a7eb3964395080c94.tar.gz |
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.gypi | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/common.gypi b/common.gypi index e323fc3a6c..ea7779ee09 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', |