From fb6245eef7f7d240d1f9e2a69d2a41ce00636dc9 Mon Sep 17 00:00:00 2001 From: Noisy <125606576+donatik27@users.noreply.github.com> Date: Tue, 24 Dec 2024 07:54:46 +0100 Subject: [PATCH] Update compiling.mdx --- book/docs/writing-programs/compiling.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/docs/writing-programs/compiling.mdx b/book/docs/writing-programs/compiling.mdx index 0bc50d9fd..151408558 100644 --- a/book/docs/writing-programs/compiling.mdx +++ b/book/docs/writing-programs/compiling.mdx @@ -30,7 +30,7 @@ This will compile the ELF that can be executed in the zkVM. The output from the [sp1] Finished `release` profile [optimized] target(s) in 8.33s ``` -Under the hood, this CLI command calls `cargo build` with the `riscv32im-succinct-zkvm-elf` target and other required environment variables and flags. The logic for this command is defined in the [sp1-build](https://github.com/succinctlabs/sp1/tree/main/build) crate. +Under the hood, this CLI command calls `cargo build` with the `riscv32im-succinct-zkvm-elf` target and other required environment variables and flags. The logic for this command is defined in the [sp1-build](https://github.com/succinctlabs/sp1/tree/dev/crates/build) crate. ### Advanced Build Options