Merge rust-bitcoin/rust-bitcoin#1611: Instruct devs to use nightly for embedded
55d17f2c18
Instruct devs to use nightly for embedded (Tobin C. Harding) Pull request description: The embedded test crate requires usage of the nightly toolchain, fix the docs to show this. ACKs for top commit: apoelstra: ACK55d17f2c18
Kixunil: ACK55d17f2c18
Tree-SHA512: 5d3d611ff4331d8475f77d260ebaa3da3ae71960b709eb4603056d7034885306b8bcc39be488f3391697d47a1074a695979fb50b6cb31af414f873da8e82bdbd
This commit is contained in:
commit
a58460bc3c
|
@ -4,13 +4,13 @@ To run the embedded test, first prepare your environment:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
sudo ./scripts/install-deps
|
sudo ./scripts/install-deps
|
||||||
rustup target add thumbv7m-none-eabi
|
rustup +nightly target add thumbv7m-none-eabi
|
||||||
```
|
```
|
||||||
|
|
||||||
Then:
|
Then:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
source ./scripts/env.sh && cargo run --target thumbv7m-none-eabi
|
source ./scripts/env.sh && cargo +nightly run --target thumbv7m-none-eabi
|
||||||
```
|
```
|
||||||
|
|
||||||
Output should be something like:
|
Output should be something like:
|
||||||
|
|
Loading…
Reference in New Issue