summaryrefslogtreecommitdiff
path: root/cli/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/build.rs')
-rw-r--r--cli/build.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/build.rs b/cli/build.rs
index 16b31081e..3c56af599 100644
--- a/cli/build.rs
+++ b/cli/build.rs
@@ -288,7 +288,6 @@ mod ts {
build_libs,
path_dts,
)],
-
// NOTE(bartlomieju): Compressing the TSC snapshot in debug build took
// ~45s on M1 MacBook Pro; without compression it took ~1s.
// Thus we're not not using compressed snapshot, trading off
@@ -305,6 +304,7 @@ mod ts {
);
})),
with_runtime_cb: None,
+ skip_op_registration: false,
});
for path in output.files_loaded_during_snapshot {
println!("cargo:rerun-if-changed={}", path.display());
@@ -402,6 +402,7 @@ fn create_cli_snapshot(snapshot_path: PathBuf) -> CreateSnapshotOutput {
extensions,
compression_cb: None,
with_runtime_cb: None,
+ skip_op_registration: false,
})
}