mirror of
https://github.com/nodejs/node.git
synced 2024-11-24 03:07:54 +01: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/54077 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
This commit is contained in:
parent
cc36db7c06
commit
e600de93cf
@ -36,7 +36,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.1',
|
||||
'v8_embedder_string': '-node.2',
|
||||
|
||||
##### V8 defaults for Node.js #####
|
||||
|
||||
|
2
deps/v8/src/flags/flag-definitions.h
vendored
2
deps/v8/src/flags/flag-definitions.h
vendored
@ -1021,7 +1021,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