Commit b69c363a authored by Maciej Goszczycki's avatar Maciej Goszczycki Committed by Commit Bot

[heap] Ensure ptr-compression and ro-heap sharing are mutually exclusive

Bug: v8:7464
Change-Id: Id191c185ebe811a7e8830cbdfd7751ee4f7b6060
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1602693Reviewed-by: 's avatarDan Elphick <delphick@chromium.org>
Commit-Queue: Maciej Goszczycki <goszczycki@google.com>
Cr-Commit-Position: refs/heads/master@{#61383}
parent 6282c56d
...@@ -236,6 +236,10 @@ assert(!v8_enable_lite_mode || v8_use_snapshot, ...@@ -236,6 +236,10 @@ assert(!v8_enable_lite_mode || v8_use_snapshot,
assert(v8_use_snapshot || !v8_enable_shared_ro_heap, assert(v8_use_snapshot || !v8_enable_shared_ro_heap,
"Nosnapshot builds are not supported with shared read-only heap enabled") "Nosnapshot builds are not supported with shared read-only heap enabled")
assert(
!v8_enable_pointer_compression || !v8_enable_shared_ro_heap,
"Pointer compression is not supported with shared read-only heap enabled")
v8_random_seed = "314159265" v8_random_seed = "314159265"
v8_toolset_for_shell = "host" v8_toolset_for_shell = "host"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment