mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Documentation: Update build path in BuildInstructions.md
Build/ is now /Build/i686/. No need to mention other targets just yet.
This commit is contained in:
parent
07f25ca6be
commit
d0427b610c
Notes:
sideshowbarker
2024-07-18 21:30:24 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/d0427b610c5 Pull-request: https://github.com/SerenityOS/serenity/pull/5737
1 changed files with 4 additions and 4 deletions
|
@ -181,13 +181,13 @@ $ cd Toolchain
|
|||
$ ./BuildIt.sh
|
||||
```
|
||||
|
||||
Building the toolchain will also automatically create a `Build/` 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/` 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`:
|
||||
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
|
||||
$ cd ../Build
|
||||
$ cmake .. -G Ninja
|
||||
$ cd ../Build/i686
|
||||
$ cmake ../.. -G Ninja
|
||||
$ ninja install
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue