From 581a9138d641d4a9d282666f4d4889bb0edaa3fe Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 26 Jul 2023 16:23:24 +1000 Subject: [PATCH] embedded: Fix the build command doc We need to use the nightly toolchain to run the embedded tests, document it appropriately. --- embedded/no-allocator/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded/no-allocator/src/main.rs b/embedded/no-allocator/src/main.rs index d194b0ed1..4270cfe75 100644 --- a/embedded/no-allocator/src/main.rs +++ b/embedded/no-allocator/src/main.rs @@ -1,6 +1,6 @@ //! Test `no_std` build of `bech32`. //! -//! Build with: `cargo rustc -- -C link-arg=-nostartfiles`. +//! Build with: `cargo +nightly rustc -- -C link-arg=-nostartfiles`. //! #![feature(alloc_error_handler)]