Remove 32 bit Windows mentions from docs.

This commit is contained in:
Half-Shot 2024-05-20 09:48:43 +01:00
parent 01a1d62396
commit 7f970b0553
2 changed files with 1 additions and 15 deletions

View File

@ -109,13 +109,7 @@ yarn run build:universal
### Windows
If you're on Windows, you can choose to build specifically for 32 or 64 bit:
```
yarn run build:32
```
or
If you're on Windows, you can only build for 64 bit:
```
yarn run build:64

View File

@ -22,17 +22,9 @@ If you want to build native modules, make sure that the following tools are inst
Once installed make sure all those utilities are accessible in your `PATH`.
If you want to be able to build x86 targets from an x64 host install the right toolchain:
```cmd
rustup toolchain install stable-i686-pc-windows-msvc
rustup target add i686-pc-windows-msvc
```
In order to load all the C++ utilities installed by Visual Studio you can run the following in a terminal window.
```
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" amd64
```
You can replace `amd64` with `x86` depending on your CPU architecture.