diff --git a/docs/native-node-modules.md b/docs/native-node-modules.md index 87efc36a..7a89fc5f 100644 --- a/docs/native-node-modules.md +++ b/docs/native-node-modules.md @@ -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 diff --git a/docs/windows-requirements.md b/docs/windows-requirements.md index 9f674379..423eacc7 100644 --- a/docs/windows-requirements.md +++ b/docs/windows-requirements.md @@ -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.