We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8828aa commit b35c8e4Copy full SHA for b35c8e4
docs/development/build-instructions-windows.md
@@ -31,11 +31,13 @@ See [Build Instructions: GN](build-instructions-gn.md)
31
32
## 32bit Build
33
34
-To build for the 32bit target, you need to pass `--target_arch=ia32` when
35
-running the bootstrap script:
+To build for the 32bit target, you need to pass `target_cpu = "x86"` as a GN
+arg. You can build the 32bit target alongside the 64bit target by using a
36
+different output directory for GN, e.g. `out/Release-x86`, with different
37
+arguments.
38
39
```powershell
-$ python script\bootstrap.py -v --target_arch=ia32
40
+$ gn gen out/Release-x86 --args="import(\"//electron/build/args/release.gn\") target_cpu=\"x86\""
41
```
42
43
The other building steps are exactly the same.
0 commit comments