diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-10-28 21:40:27 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 21:40:27 +1100 |
commit | 117d9d2087479b1d85a6f7eeba5b8971a4d0c6ff (patch) | |
tree | 06b6ef5e121577932f2e68fe6f38db5cd37c3c74 /cli/bench/main.rs | |
parent | f77c5701f774b5f0ba548fb1e0eb53dfd304f440 (diff) |
fix(bench): migrate to v8 from rusty_v8 (#12571)
Fixes #12569
Diffstat (limited to 'cli/bench/main.rs')
-rw-r--r-- | cli/bench/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/bench/main.rs b/cli/bench/main.rs index 67034ce63..e17ed4068 100644 --- a/cli/bench/main.rs +++ b/cli/bench/main.rs @@ -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. |