We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4b5f75 commit 83b1750Copy full SHA for 83b1750
aggregation_mode/build.rs
@@ -1,7 +1,11 @@
1
+// Reference: https://docs.succinct.xyz/docs/sp1/writing-programs/compiling#advanced-build-options-1
2
fn main() {
3
sp1_build::build_program_with_args("./aggregation_programs/sp1", {
4
sp1_build::BuildArgs {
5
output_directory: Some("./aggregation_programs/sp1/elf".to_string()),
6
+ // We use Docker to generate a reproducible ELF that will be identical across all platforms
7
+ // (https://docs.succinct.xyz/docs/sp1/writing-programs/compiling#production-builds)
8
+ docker: true,
9
..Default::default()
10
}
11
});
0 commit comments