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:
authorMary Marchini <mmarchini@netflix.com>2020-08-10 08:53:22 +0300
committerMary Marchini <mmarchini@netflix.com>2020-08-12 18:47:04 +0300
commitb5e3fca04cda736d4a3edcdd4f61d7686291821b (patch)
tree3ae5a004011e8438526a1e6abafbd2384a341241 /configure.py
parent3b84048260ba57277b327c1913ca19d826c49158 (diff)
build: set --v8-enable-object-print by default
The flag improves the experience of debugging V8 with native debuggers. It doens't incur performance penality, the only downside is an increase in binary size by approximately 248 Kb. Ref: https://github.com/nodejs/node/pull/32834 PR-URL: https://github.com/nodejs/node/pull/34705 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 2327089e123..fc702ce06fb 100755
--- a/configure.py
+++ b/configure.py
@@ -709,7 +709,7 @@ parser.add_option('--v8-lite-mode',
parser.add_option('--v8-enable-object-print',
action='store_true',
dest='v8_enable_object_print',
- default=False,
+ default=True,
help='compile V8 with auxiliar functions for native debuggers')
parser.add_option('--node-builtin-modules-path',