diff options
author | Samuel Klein <64849687+sklei4@users.noreply.github.com> | 2021-04-10 07:34:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-10 09:34:11 +0200 |
commit | 392d9e94f0211f1025e67ee467c3ac0b53f6abf9 (patch) | |
tree | 7d1ac0bc3211d22fe02da022045b9941d8764114 /Documentation | |
parent | 1b071455b1793dbfc7039a9090540ba0aeaf3221 (diff) | |
download | serenity-392d9e94f0211f1025e67ee467c3ac0b53f6abf9.zip |
Documentation: Improve wording around build directory location (#6168)
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/BuildInstructions.md | 9 |
1 files 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 ``` |