mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
parent
f77c5701f7
commit
117d9d2087
1 changed files with 3 additions and 3 deletions
|
@ -259,9 +259,9 @@ fn get_binary_sizes(target_dir: &Path) -> Result<HashMap<String, u64>> {
|
||||||
println!("swc {} bytes", swc_size);
|
println!("swc {} bytes", swc_size);
|
||||||
sizes.insert("swc_rlib".to_string(), swc_size);
|
sizes.insert("swc_rlib".to_string(), swc_size);
|
||||||
|
|
||||||
let rusty_v8_size = rlib_size(target_dir, "librusty_v8");
|
let v8_size = rlib_size(target_dir, "libv8");
|
||||||
println!("rusty_v8 {} bytes", rusty_v8_size);
|
println!("v8 {} bytes", v8_size);
|
||||||
sizes.insert("rusty_v8_rlib".to_string(), rusty_v8_size);
|
sizes.insert("rusty_v8_rlib".to_string(), v8_size);
|
||||||
|
|
||||||
// Because cargo's OUT_DIR is not predictable, search the build tree for
|
// Because cargo's OUT_DIR is not predictable, search the build tree for
|
||||||
// snapshot related files.
|
// snapshot related files.
|
||||||
|
|
Loading…
Reference in a new issue