Skip to content

Add extra prerequisite in order to develop under windows #1060

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 26, 2023
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