Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Aug 28, 2024
1 parent 2e0ed62 commit 38075b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion op-succinct-proposer/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ fn main() {

for program in programs {
build_native_program(program);
// Note: Don't build any of the zkVM programs as the ELF may change, as they're already built.
build_zkvm_program(program);
}

Expand Down
6 changes: 2 additions & 4 deletions zkvm-host/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,11 @@ fn build_zkvm_program(program: &str) {
}

fn main() {
// let programs = vec!["fault-proof", "range"];
let programs = vec!["range"];
let programs = vec!["fault-proof", "range"];
for program in programs {
build_native_program(program);
// Note: Don't build any of the zkVM programs as the ELF may change, as they're already built.
build_zkvm_program(program);
}

// build_zkvm_program("aggregation");
build_zkvm_program("aggregation");
}

0 comments on commit 38075b4

Please sign in to comment.