docs: x64 is the default build

This commit is contained in:
Cheng Zhao 2016-07-26 17:40:58 +09:00
parent 9bf3150237
commit b34deb1d2f

View file

@ -58,13 +58,13 @@ $ python script\build.py -c D
After building is done, you can find `electron.exe` under `out\D` (debug After building is done, you can find `electron.exe` under `out\D` (debug
target) or under `out\R` (release target). target) or under `out\R` (release target).
## 64bit Build ## 32bit Build
To build for the 64bit target, you need to pass `--target_arch=x64` when running To build for the 32bit target, you need to pass `--target_arch=ia32` when
the bootstrap script: running the bootstrap script:
```powershell ```powershell
$ python script\bootstrap.py -v --target_arch=x64 $ python script\bootstrap.py -v --target_arch=ia32
``` ```
The other building steps are exactly the same. The other building steps are exactly the same.