mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-29 14:44:03 +03:00
Merge pull request #1603 from ska80/remove-realpath-notes
Remove all mentions of `realpath` from docs
This commit is contained in:
commit
b03395debe
10
INSTALL.md
10
INSTALL.md
@ -9,11 +9,11 @@ The easiest way to install is via the existing generated Scheme code.
|
||||
The requirements are:
|
||||
|
||||
- A Scheme compiler; either Chez Scheme (default), or Racket.
|
||||
- `bash`, with `realpath`. On Linux, you probably already have this.
|
||||
On a macOS, you can install this with `brew install coreutils`.
|
||||
On FreeBSD, OpenBSD and NetBSD, you can install `realpath` and `GNU make`
|
||||
using a package manager. For instance, on OpenBSD you can install all of them
|
||||
with `pkg_add coreutils gmake` command.
|
||||
- `bash`, `GNU make`, `sha256sum` and `GMP`. On Linux, you probably already
|
||||
have this. On macOS and major BSD flavours, you can install them using a
|
||||
package manager: for instance, on macOS, you can install with the
|
||||
`brew install coreutils gmp` and on OpenBSD, with the `pkg_add coreutils
|
||||
bash gmake gmp` command.
|
||||
|
||||
On Windows, it has been reported that installing via `MSYS2` works
|
||||
[MSYS2](https://www.msys2.org/). On Windows older than Windows 8, you may need to
|
||||
|
@ -91,8 +91,6 @@ which you can run:
|
||||
$ ./build/exec/hello
|
||||
Hello world
|
||||
|
||||
(On macOS you may first need to install realpath: ```brew install coreutils```)
|
||||
|
||||
Please note that the dollar sign ``$`` indicates the shell prompt!
|
||||
Some useful options to the Idris command are:
|
||||
|
||||
|
@ -3,7 +3,7 @@ rm -rf build
|
||||
rm -f expected
|
||||
|
||||
if ! NProcs=$(nproc || sysctl -n hw.ncpu) 2>/dev/null; then
|
||||
echo Command nproc not found. Try installing coreutils. >&2
|
||||
echo "Command 'nproc' not found." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user