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.
This commit is contained in:
thislooksfun 2021-04-01 21:14:42 -05:00 committed by Andreas Kling
parent 408398e276
commit 05d7869dc0
Notes: sideshowbarker 2024-07-18 20:53:40 +09:00

View file

@ -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
```