Skip to content

Commit

Permalink
Use the proper target directory when searching for benchmark payloads
Browse files Browse the repository at this point in the history
  • Loading branch information
koute committed Feb 10, 2024
1 parent abfdf5e commit ffadb41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/benchtool/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ fn find_benchmarks() -> Result<Vec<Benchmark>, std::io::Error> {
let mut output = Vec::new();
let root = Path::new(env!("CARGO_MANIFEST_DIR")).join("../../guest-programs");
let paths = [
root.join("target/riscv32em-unknown-none-elf/release"),
root.join("target/riscv32ema-unknown-none-elf/release"),
root.join("target/riscv64imac-unknown-none-elf/release"),
root.join("target/wasm32-unknown-unknown/release"),
root.join("target/sbf-solana-solana/release"),
Expand Down

0 comments on commit ffadb41

Please sign in to comment.