From 392d9e94f0211f1025e67ee467c3ac0b53f6abf9 Mon Sep 17 00:00:00 2001 From: Samuel Klein <64849687+sklei4@users.noreply.github.com> Date: Sat, 10 Apr 2021 07:34:11 +0000 Subject: [PATCH] Documentation: Improve wording around build directory location (#6168) --- Documentation/BuildInstructions.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 1d066b3926..1e01f71c7b 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -185,12 +185,15 @@ $ cd Toolchain $ ./BuildIt.sh ``` -Building the toolchain will also automatically create a `Build/i686/` directory for the build to live in. - -Once the toolchain has been built, go into the `Build/i686/` directory and run the commands. Note that while `ninja` seems to be faster, you can also just use GNU make, by omitting `-G Ninja` and calling `make` instead of `ninja`: +Building the toolchain will also automatically create a `Build/i686/` directory for the build to live in. Once the toolchain has been built, go into the `Build/i686/` directory. Specifically, change the current directory to the `Build/` parent directory. To go there from `Toolchain/`, use this command: ```console $ cd ../Build/i686 +``` + +Run the following commands from within the `Build/i686/` directory. Note that while `ninja` seems to be faster, you can also just use GNU make, by omitting `-G Ninja` and calling `make` instead of `ninja`: + +```console $ cmake ../.. -G Ninja $ ninja install ```