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
committerBeth Griggs <Bethany.Griggs@uk.ibm.com>2020-08-20 17:05:13 +0300
commit15c92083b5bf623a75692809074f2d6207ba8aaf (patch)
treec38bf6e0519a159d04c92647e44aa194d480e860 /configure.py
parent6ee2578427d4e18df888a7c0f35d168195ec59cb (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 3aadac4055e..eaa262be30d 100755
--- a/configure.py
+++ b/configure.py
@@ -662,7 +662,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',