diff options
author | Sam Roberts <vieuxtech@gmail.com> | 2017-06-26 11:24:33 -0700 |
---|---|---|
committer | Sam Roberts <vieuxtech@gmail.com> | 2017-07-05 13:57:59 -0700 |
commit | c45df83b54744ce5b9dcb20b9f8a8355085991a4 (patch) | |
tree | 83e88c6eac9f97099b2d9a1d80f2b5cab87d40d8 /src/node.cc | |
parent | 46d7cb88c7f8b416e667c52de80e6766115b3781 (diff) | |
download | node-new-c45df83b54744ce5b9dcb20b9f8a8355085991a4.tar.gz |
src: --abort-on-uncaught-exception in NODE_OPTIONS
Allow --abort-on-uncaught-exception in NODE_OPTIONS, its useful to
enable for post-mortem debugging.
PR-URL: https://github.com/nodejs/node/pull/13932
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node.cc')
-rw-r--r-- | src/node.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node.cc b/src/node.cc index 70f5bbb303..944ba6dedd 100644 --- a/src/node.cc +++ b/src/node.cc @@ -3766,6 +3766,7 @@ static void CheckIfAllowedInEnv(const char* exe, bool is_env, "--icu-data-dir", // V8 options + "--abort-on-uncaught-exception", "--max_old_space_size", }; |