Skip to content

Commit

Permalink
Fix: cargo risczero build-toolchain instead of cargo risczero install…
Browse files Browse the repository at this point in the history
… for x86_64-darwin (#338)
  • Loading branch information
Clint authored and rakanalh committed Apr 6, 2024
1 parent d8e30c8 commit bf212cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ install-dev-tools: ## Installs all necessary cargo helpers
cargo install cargo-nextest --locked
cargo install cargo-binstall
cargo binstall cargo-risczero
ifeq ($(shell uname -ms), Darwin x86_64)
cargo risczero build-toolchain
else
cargo risczero install
endif
rustup target add thumbv6m-none-eabi

lint: ## cargo check and clippy. Skip clippy on guest code since it's not supported by risc0
Expand Down

0 comments on commit bf212cf

Please sign in to comment.