mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:37:34 +00:00
Documentation: Improve wording around build directory location (#6168)
This commit is contained in:
parent
1b071455b1
commit
392d9e94f0
1 changed files with 6 additions and 3 deletions
|
@ -185,12 +185,15 @@ $ cd Toolchain
|
||||||
$ ./BuildIt.sh
|
$ ./BuildIt.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Building the toolchain will also automatically create a `Build/i686/` directory for the build to live in.
|
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:
|
||||||
|
|
||||||
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`:
|
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ cd ../Build/i686
|
$ 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
|
$ cmake ../.. -G Ninja
|
||||||
$ ninja install
|
$ ninja install
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue