From aa046a8d9e7d8a1ad24dd3fbd1aea6cc04d53bc2 Mon Sep 17 00:00:00 2001 From: "Suraj kumar (sk)" <71056993+surajkumar-sk@users.noreply.github.com> Date: Tue, 23 Mar 2021 00:02:26 +0530 Subject: [PATCH] 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'`. --- docs/source/build_instructions.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/build_instructions.md b/docs/source/build_instructions.md index bec08cc3fd..5f68254014 100644 --- a/docs/source/build_instructions.md +++ b/docs/source/build_instructions.md @@ -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.: ```shell -$ GYP_DEFINES='target_arch=x64' gclient runhooks +$ SET GYP_DEFINES='target_arch=x64' +$ gclient runhooks $ ninja -C out/Release_x64 ```