We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae568e commit 88139f0Copy full SHA for 88139f0
build_system/bench.rs
@@ -66,7 +66,7 @@ pub(crate) fn benchmark(dirs: &Dirs, compiler: &Compiler) {
66
target_dir = target_dir.display(),
67
);
68
69
- let bench_compile_markdown = dirs.dist_dir.join("bench_compile.md");
+ let bench_compile_markdown = dirs.build_dir.join("bench_compile.md");
70
71
let bench_compile = hyperfine_command(
72
0,
@@ -90,7 +90,7 @@ pub(crate) fn benchmark(dirs: &Dirs, compiler: &Compiler) {
90
91
eprintln!("[BENCH RUN] ebobby/simple-raytracer");
92
93
- let bench_run_markdown = dirs.dist_dir.join("bench_run.md");
+ let bench_run_markdown = dirs.build_dir.join("bench_run.md");
94
95
let raytracer_cg_llvm =
96
Path::new(".").join(get_file_name(&compiler.rustc, "raytracer_cg_llvm", "bin"));
0 commit comments