Skip to content

Commit ae3d446

Browse files
authored
Add note about compiler version (#709)
1 parent df411be commit ae3d446

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

llms.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33207,6 +33207,16 @@ Before getting started, ensure you have done the following:
3320733207

3320833208
- Completed the [Install Polkadot SDK Dependencies](/develop/parachains/install-polkadot-sdk/){target=\_blank} guide and successfully installed [Rust](https://www.rust-lang.org/){target=\_blank} and the required packages to set up your development environment
3320933209

33210+
For this tutorial series, you need to use Rust `1.86`. Newer versions of the compiler may not work with this parachain template version.
33211+
33212+
Run the following commands to set up the correct Rust version:
33213+
33214+
```bash
33215+
rustup default 1.86
33216+
rustup target add wasm32-unknown-unknown --toolchain 1.86-aarch64-apple-darwin
33217+
rustup component add rust-src --toolchain 1.86-aarch64-apple-darwin
33218+
```
33219+
3321033220
## Utility Tools
3321133221

3321233222
This tutorial requires two essential tools:

tutorials/polkadot-sdk/parachains/zero-to-hero/set-up-a-template.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,16 @@ Before getting started, ensure you have done the following:
3030

3131
- Completed the [Install Polkadot SDK Dependencies](/develop/parachains/install-polkadot-sdk/){target=\_blank} guide and successfully installed [Rust](https://www.rust-lang.org/){target=\_blank} and the required packages to set up your development environment
3232

33+
For this tutorial series, you need to use Rust `1.86`. Newer versions of the compiler may not work with this parachain template version.
34+
35+
Run the following commands to set up the correct Rust version:
36+
37+
```bash
38+
rustup default 1.86
39+
rustup target add wasm32-unknown-unknown --toolchain 1.86-aarch64-apple-darwin
40+
rustup component add rust-src --toolchain 1.86-aarch64-apple-darwin
41+
```
42+
3343
## Utility Tools
3444

3545
This tutorial requires two essential tools:

0 commit comments

Comments
 (0)