Fix the build instructions on Windows
For windows running `GYP_DEFINES='target_arch=X64'` shows an error GYP_DEFINES is not recognized as an internal or external command. The actual command is to set the value of GYP_DEFINES. so it should be `SET GYP_DEFINES='target_arch=X64'`.
This commit is contained in:
parent
dd935f6dc3
commit
aa046a8d9e
|
@ -185,7 +185,8 @@ Also, unlike Linux / Mac, 32-bit is chosen by default even if the system is
|
||||||
configured to `out/%CONFIGURATION%_x64`, i.e.:
|
configured to `out/%CONFIGURATION%_x64`, i.e.:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ GYP_DEFINES='target_arch=x64' gclient runhooks
|
$ SET GYP_DEFINES='target_arch=x64'
|
||||||
|
$ gclient runhooks
|
||||||
$ ninja -C out/Release_x64
|
$ ninja -C out/Release_x64
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue