summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorAndrew Kaster <andrewdkaster@gmail.com>2020-05-19 00:05:35 -0600
committerAndreas Kling <kling@serenityos.org>2020-05-20 08:37:50 +0200
commit83137f76de2a406e1e58da0421240cb1f961cce5 (patch)
treeafc887239da301e76883ddbb5ad54c4c5cc2a48c /Documentation
parent4e051c6c15f25b58ee67127a9e4bd5e7a8684fea (diff)
downloadserenity-83137f76de2a406e1e58da0421240cb1f961cce5.zip
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.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/BuildInstructions.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md
index bdd30f5ba0..2f2184fdf5 100644
--- a/Documentation/BuildInstructions.md
+++ b/Documentation/BuildInstructions.md
@@ -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 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, go into the `Build/` directory and run the `make` and `make install` commands:
+Once the toolchain and cmake have been built, run the `make` and `make install` commands:
```bash
-$ cd ..
-$ cd Build
$ make
$ make install
```