You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
V8: disable Temporal in monolith to keep it self-contained
V8 13+ (Node.js 25+) enables the Temporal proposal by default, backed by
the Rust //third_party/rust/temporal_capi crate. That crate is a separate
static library that is NOT linked into v8_monolith, so embedders linking
the standalone monolith get ~250 unresolved temporal_rs_* externals (the
win-x86 v8-v25.6.1 package is affected; full libnode bundles it instead).
Generate args.gn from a pwsh step and add v8_enable_temporal_support=false
when the V8 major version is >= 13 (guarded, since gn errors on unknown
args and the flag does not exist on older V8 / Node.js 22 builds).
0 commit comments