-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: no way to disable V8 "object print" during ./configure #45433
Labels
build
Issues and PRs related to build files or the CI.
good first issue
Issues that are suitable for first-time contributors.
Comments
mscdex
added
good first issue
Issues that are suitable for first-time contributors.
build
Issues and PRs related to build files or the CI.
labels
Nov 11, 2022
fossamagna
added a commit
to fossamagna/node
that referenced
this issue
Nov 14, 2022
--v8-enable-object-print flag is set by default true. so, no way of disable this flag. remove --v8-enable-object-print flag. add a --v8-disable-object-print flag instead that defaults to false. Fixes: nodejs#45433
fossamagna
added a commit
to fossamagna/node
that referenced
this issue
Nov 15, 2022
--v8-enable-object-print flag is set by default true. so, no way of disable this flag. add a --v8-disable-object-print flag instead that defaults to false. Fixes: nodejs#45433
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
build
Issues and PRs related to build files or the CI.
good first issue
Issues that are suitable for first-time contributors.
Version
all
Platform
n/a
Subsystem
build
What steps will reproduce the bug?
No response
How often does it reproduce? Is there a required condition?
No response
What is the expected behavior?
No response
What do you see instead?
Additional information
Currently there is only
--v8-enable-object-print
, which defaults to true, making it (seemingly?) impossible to disable the "object print" feature. I feel like if this flag is defaulting to true/enabled, this should really be a--v8-disable-object-print
flag instead that defaults to false.The text was updated successfully, but these errors were encountered: