diff options
author | Michaël Zasso <targos@protonmail.com> | 2023-04-06 14:50:56 +0200 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2023-05-01 12:40:30 +0200 |
commit | 2a165505b7841944cab855457d8475cbb04f5e74 (patch) | |
tree | 96e5a32a385fc4b0adb8cdebe5eb0012d04b504c /deps/v8/src | |
parent | a4cf6b204f0b160480153dc293ae748bf15225f9 (diff) | |
download | node-new-2a165505b7841944cab855457d8475cbb04f5e74.tar.gz |
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>
Diffstat (limited to 'deps/v8/src')
-rw-r--r-- | deps/v8/src/flags/flag-definitions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/flags/flag-definitions.h b/deps/v8/src/flags/flag-definitions.h index fcfff23a83..8a3ab897c6 100644 --- a/deps/v8/src/flags/flag-definitions.h +++ b/deps/v8/src/flags/flag-definitions.h @@ -761,7 +761,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) |