Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Aug 28, 2024
1 parent 38075b4 commit ce31ee8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion op-succinct-proposer/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ fn build_zkvm_program(program: &str) {
&format!("../client-programs/{}", program),
BuildArgs {
elf_name: format!("{}-elf", program),
// docker: true,
docker: true,
..Default::default()
},
);
Expand Down
4 changes: 2 additions & 2 deletions zkvm-host/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fn build_zkvm_program(program: &str) {
&format!("../client-programs/{}", program),
BuildArgs {
elf_name: format!("{}-elf", program),
// docker: true,
docker: true,
..Default::default()
},
);
Expand All @@ -42,7 +42,7 @@ fn main() {
let programs = vec!["fault-proof", "range"];
for program in programs {
build_native_program(program);
build_zkvm_program(program);
build_zkvm_program(program);
}

build_zkvm_program("aggregation");
Expand Down

0 comments on commit ce31ee8

Please sign in to comment.