Skip to content

Commit ea3e55e

Browse files
authored
[interpreter] Update build instructions
1 parent 9e08b9b commit ea3e55e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

interpreter/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,16 @@ The text format defines modules in S-expression syntax. Moreover, it is generali
1515

1616
## Building
1717

18-
You'll need OCaml 4.12 or higher. Instructions for installing a recent version of OCaml on multiple platforms are available [here](https://ocaml.org/docs/install.html). On most platforms, the recommended way is through [OPAM](https://ocaml.org/docs/install.html#OPAM).
18+
You'll need OCaml 4.12 or higher. Instructions for installing a recent version of OCaml on multiple platforms are available [here](https://ocaml.org/docs/installing-ocaml). On most platforms, the recommended way is through [Opam](https://ocaml.org/docs/installing-ocaml#install-opam).
1919

2020
You'll also need to install the dune build system. See the [installation instructions](https://github.com/ocaml/dune#installation-1).
2121

22-
Once you have OCaml, simply do
22+
And you need to install the [Menhir](https://gallium.inria.fr/~fpottier/menhir/) parser generator:
23+
```
24+
opam install menhir
25+
```
2326

27+
Once you have OCaml, simply do
2428
```
2529
make
2630
```

0 commit comments

Comments
 (0)