File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -159,13 +159,13 @@ is_aggregator_set:
159159 fi
160160
161161start_proof_aggregator_dev : is_aggregator_set # # Starts proof aggregator with mock proofs (DEV mode)
162- RISC0_DEV_MODE=1 cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features $( AGGREGATOR ) -- config-files/config-proof-aggregator-mock.yaml
162+ AGGREGATOR= $( AGGREGATOR ) RISC0_DEV_MODE=1 cargo run --manifest-path ./aggregation_mode/Cargo.toml --release -- config-files/config-proof-aggregator-mock.yaml
163163
164164start_proof_aggregator : is_aggregator_set # # Starts proof aggregator with proving activated
165- cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove, $( AGGREGATOR ) -- config-files/config-proof-aggregator.yaml
165+ AGGREGATOR= $( AGGREGATOR ) cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove -- config-files/config-proof-aggregator.yaml
166166
167167start_proof_aggregator_gpu : is_aggregator_set # # Starts proof aggregator with proving + GPU acceleration (CUDA)
168- SP1_PROVER=cuda cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove,gpu, $( AGGREGATOR ) -- config-files/config-proof-aggregator.yaml
168+ AGGREGATOR= $( AGGREGATOR ) SP1_PROVER=cuda cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove,gpu -- config-files/config-proof-aggregator.yaml
169169
170170_AGGREGATOR_ :
171171
You can’t perform that action at this time.
0 commit comments