mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-21 20:28:58 +00:00
build: turn off v8_enable_shared_ro_heap
flag again (#1174)
Enabling the shared read-only heap comes with a restriction that all isolates running at the same time must be created from the same snapshot. This is problematic for Deno, which has separate "runtime" and "typescript compiler" snapshots, and sometimes uses them both at the same time.
This commit is contained in:
parent
0c6b657c32
commit
f7145b9828
6
.gn
6
.gn
@ -42,4 +42,10 @@ default_args = {
|
||||
# around by the garbage collector but embedders normally want them to have
|
||||
# fixed addresses.
|
||||
v8_typed_array_max_size_in_heap = 0
|
||||
|
||||
# Enabling the shared read-only heap comes with a restriction that all
|
||||
# isolates running at the same time must be created from the same snapshot.
|
||||
# This is problematic for Deno, which has separate "runtime" and "typescript
|
||||
# compiler" snapshots, and sometimes uses them both at the same time.
|
||||
v8_enable_shared_ro_heap = false
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user