mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
Meta: Restore instructions to create build directory for CMake
We eliminated the need to pre-build LibC for libstdc++ by eliminating libstdc++ itself, so users need to create their own build directories again.
This commit is contained in:
parent
4e051c6c15
commit
83137f76de
Notes:
sideshowbarker
2024-07-19 06:20:13 +09:00
Author: https://github.com/ADKaster Commit: https://github.com/SerenityOS/serenity/commit/83137f76de2 Pull-request: https://github.com/SerenityOS/serenity/pull/2242 Reviewed-by: https://github.com/bugaevc
1 changed files with 8 additions and 5 deletions
|
@ -80,12 +80,15 @@ $ cd Toolchain
|
|||
$ ./BuildIt.sh
|
||||
```
|
||||
|
||||
Building the toolchain will also automatically create a `Build/` directory for the build to live in, and build cmake inside that directory.
|
||||
|
||||
Once the toolchain and cmake have been built, go into the `Build/` directory and run the `make` and `make install` commands:
|
||||
Once you've built the toolchain, create a directory for the build to live in (for example, `Build/`), and run the CMake build:
|
||||
```bash
|
||||
cd ..
|
||||
mkdir Build && cd Build
|
||||
cmake ..
|
||||
```
|
||||
|
||||
Once the toolchain and cmake have been built, run the `make` and `make install` commands:
|
||||
```bash
|
||||
$ cd ..
|
||||
$ cd Build
|
||||
$ make
|
||||
$ make install
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue