diff --git a/INSTALL.md b/INSTALL.md index 7f1d47879ff2..61164fadd4e1 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -449,7 +449,10 @@ make -j ``` Replace `` with the number that the `nproc` command returned. -`nproc` is not available on macOS. The alternative is `sysctl -n hw.ncpu` ([relevant Stack Overflow thread](https://stackoverflow.com/questions/1715580)). +`nproc` is not available on macOS. The alternatives are: +Installing `nproc` through installing GNU coreutils through Homebrew (`brew install coreutils`) +`sysctl -n hw.ncpu` ([relevant Stack Overflow thread](https://stackoverflow.com/questions/1715580)) +`nproc 2>/dev/null || echo 8` for those who can't or don't want to install `nproc` or use `sysctl -n hw.cpu` ## devkitARM's C compiler