mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -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);
|
||||
sizes.insert("swc_rlib".to_string(), swc_size);
|
||||
|
||||
let rusty_v8_size = rlib_size(target_dir, "librusty_v8");
|
||||
println!("rusty_v8 {} bytes", rusty_v8_size);
|
||||
sizes.insert("rusty_v8_rlib".to_string(), rusty_v8_size);
|
||||
let v8_size = rlib_size(target_dir, "libv8");
|
||||
println!("v8 {} bytes", v8_size);
|
||||
sizes.insert("rusty_v8_rlib".to_string(), v8_size);
|
||||
|
||||
// Because cargo's OUT_DIR is not predictable, search the build tree for
|
||||
// snapshot related files.
|
||||
|
|
Loading…
Reference in a new issue