Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Aug 30, 2024
1 parent ca1bba4 commit 55ec32d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions op-succinct-proposer/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,11 @@ fn main() {
// Note: Don't comment this out, because the Docker program depends on the native program
// for range being built.
build_native_program(program);
build_zkvm_program(program);
// build_zkvm_program(program);
}

build_zkvm_program("aggregation");
// build_zkvm_program("aggregation");
// Note: Don't comment this out, because the Docker program depends on the native host runner
// being built.
build_native_host_runner();
}
6 changes: 3 additions & 3 deletions zkvm-host/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ fn build_zkvm_program(program: &str) {
fn main() {
let programs = vec!["range"];
for program in programs {
build_native_program(program);
build_zkvm_program(program);
// build_native_program(program);
// build_zkvm_program(program);
}

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

0 comments on commit 55ec32d

Please sign in to comment.