Skip to content

Commit

Permalink
Disable snapshot compression on all platforms (#865)
Browse files Browse the repository at this point in the history
It turns out that the embedder can selectively compress snapshots,
resulting in better startup performance and a smaller binary size.

See denoland/deno#13320.
  • Loading branch information
piscisaureus committed Jan 10, 2022
1 parent 1cedb0e commit 3315ccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gn
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ default_args = {
# https://cs.chromium.org/chromium/src/docs/ccache_mac.md
clang_use_chrome_plugins = false
v8_monolithic = false
v8_enable_snapshot_compression = true
v8_enable_snapshot_compression = false
v8_use_external_startup_data = false
v8_use_snapshot = true
is_component_build = false
Expand Down

0 comments on commit 3315ccd

Please sign in to comment.