diff options
author | thislooksfun <tlf@thislooks.fun> | 2021-04-01 21:14:42 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-02 23:08:05 +0200 |
commit | 05d7869dc05779c003ec2c05a647ea980c6650eb (patch) | |
tree | 97ff72d0de6bc0b2a4174f6f4c7ef9af1302db55 /Documentation | |
parent | 408398e2766a2e81e0fe4bf18fcf88ee05506d0d (diff) | |
download | serenity-05d7869dc05779c003ec2c05a647ea980c6650eb.zip |
Documentation: Split brew install commands into core and fuse+ext2
If you don't need/want to use Fuse+ex2 then half of the existing
install command is unnecessary, and it's hard to pick out which you
do and don't need to, for example, build Lagom. This makes it clear
which commands you can skip if you don't need ex2 support.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/BuildInstructions.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 4c4f7b777c..3c8aa9a2ad 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -111,7 +111,11 @@ Once you're in nix-shell, you should be able to follow the build directions. Make sure you have all the dependencies installed: ```console -brew install coreutils qemu e2fsprogs m4 autoconf libtool automake bash gcc@10 ninja cmake +# core +brew install coreutils qemu bash gcc@10 ninja cmake + +# Fuse + ex2 +brew install osxfuse, e2fsprogs, m4, autoconf, automake, libtool brew install --cask osxfuse Toolchain/BuildFuseExt2.sh ``` |