From 14968da7aa6626a350fe0d03caa41d244279a4a4 Mon Sep 17 00:00:00 2001 From: Sheldon Young Date: Wed, 28 Jun 2023 08:54:03 -0700 Subject: [PATCH] Nightly toolchain required for `build-std` feature --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8bfbd59..7b7c343 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,8 @@ This software is not sponsored or supported by Panic. ## Requirements * The Playdate SDK installed in `$HOME/Developer/PlaydateSDK` on Linux or MacOS, `$HOME/Documents/PlaydateSDK` on Window, or at the path specified by the `$PLAYDATE_SDK` environment variable. - * Rust, easiest installed via [rustup](https://rustup.rs) + * Rust, easiest installed via [rustup](https://rustup.rs). + * Switch to the nightly toolchain using `rustup toolchain install nightly`, required for the `build-std` feature. * If you want to build for the Playdate device, you will need the `thumbv7em-none-eabihf` target. Added with `rustup +nightly target add thumbv7em-none-eabihf` * All the requirements listed in [Inside Playdate with C](https://sdk.play.date/inside-playdate-with-c#_prerequisites).