Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/guides/getting-started/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,24 @@ Alternatively, you could use `winget` to install rustup using the following comm
winget install --id Rustlang.Rustup
```

#### 3. MSVC toolchain as default

In order to be able to install tools like `tauri-cli` and `trunk` you need to make sure that the proper toolchain is set as default.

To display the current configured default toolchain please run the following command:

```powershell
rustup default
```

The command should return either `i686-pc-windows-msvc`, `x86_64-pc-windows-msvc`, or `aarch64-pc-windows-msvc`.

If the command returns a different toolchain, please configure the default toolchain in the following way:

```powershell
rustup default stable-msvc
```

### Setting Up macOS

#### 1. CLang and macOS Development Dependencies
Expand Down