Skip to content

Commit

Permalink
Update default elf path
Browse files Browse the repository at this point in the history
  • Loading branch information
xander42280 committed Dec 16, 2024
1 parent c17e28a commit c544e1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion host-program/mem-alloc-vec/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub const DEFALUT_PROVER_NETWORK_DOMAIN: &str = "stage";

const ELF_PATH: &str = concat!(
env!("CARGO_MANIFEST_DIR"),
"/../../guest-program/mem-alloc-vec/target/elf-compilation/mips-unknown-linux-musl/release/mem-alloc-vec"
"/../../guest-program/mem-alloc-vec/elf/mips-unknown-linux-musl"
);

#[tokio::main]
Expand Down
2 changes: 1 addition & 1 deletion host-program/revme/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub const DEFAULT_PROVER_NETWORK_RPC: &str = "https://152.32.186.45:20002";
pub const DEFALUT_PROVER_NETWORK_DOMAIN: &str = "stage";
const ELF_PATH: &str = concat!(
env!("CARGO_MANIFEST_DIR"),
"/../../guest-program/revme/target/elf-compilation/mips-unknown-linux-musl/release/revme"
"/../../guest-program/revme/elf/mips-unknown-linux-musl"
);

#[tokio::main]
Expand Down
2 changes: 1 addition & 1 deletion host-program/sha2-rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub const DEFALUT_PROVER_NETWORK_DOMAIN: &str = "stage";

const ELF_PATH: &str = concat!(
env!("CARGO_MANIFEST_DIR"),
"/../../guest-program/sha2-rust/target/elf-compilation/mips-unknown-linux-musl/release/sha2-rust"
"/../../guest-program/sha2-rust/elf/mips-unknown-linux-musl"
);

#[tokio::main]
Expand Down

0 comments on commit c544e1d

Please sign in to comment.