mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
deps: disable V8 concurrent sparkplug compilation
It introduces process hangs on some platforms because Node.js doesn't tear down V8 correctly. Disable it while we work on a solution. Refs: https://github.com/nodejs/node/issues/47297 Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902 PR-URL: https://github.com/nodejs/node/pull/47450 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/52465 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
This commit is contained in:
parent
2397b5cb8c
commit
80a42a9eaa
@ -37,7 +37,7 @@
|
||||
|
||||
# Reset this number to 0 on major V8 upgrades.
|
||||
# Increment by one for each non-official patch applied to deps/v8.
|
||||
'v8_embedder_string': '-node.2',
|
||||
'v8_embedder_string': '-node.3',
|
||||
|
||||
##### V8 defaults for Node.js #####
|
||||
|
||||
|
2
deps/v8/src/flags/flag-definitions.h
vendored
2
deps/v8/src/flags/flag-definitions.h
vendored
@ -978,7 +978,7 @@ DEFINE_BOOL(baseline_batch_compilation, true, "batch compile Sparkplug code")
|
||||
DEFINE_BOOL_READONLY(concurrent_sparkplug, false,
|
||||
"compile Sparkplug code in a background thread")
|
||||
#else
|
||||
DEFINE_BOOL(concurrent_sparkplug, ENABLE_SPARKPLUG_BY_DEFAULT,
|
||||
DEFINE_BOOL(concurrent_sparkplug, false,
|
||||
"compile Sparkplug code in a background thread")
|
||||
DEFINE_WEAK_IMPLICATION(future, concurrent_sparkplug)
|
||||
DEFINE_NEG_IMPLICATION(predictable, concurrent_sparkplug)
|
||||
|
Loading…
Reference in New Issue
Block a user