mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Documentation: Improve wording around build directory location (#6168)
This commit is contained in:
parent
1b071455b1
commit
392d9e94f0
Notes:
sideshowbarker
2024-07-19 18:30:04 +09:00
Committer: https://github.com/web-flow Commit: https://github.com/SerenityOS/serenity/commit/392d9e94f02
1 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue