Skip to content

Commit 60158e0

Browse files
authored
Update README.md
1 parent de6faa7 commit 60158e0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ in autumn 2025.
1010

1111
The following gives basic instructions for getting set up. Please see
1212
[`HACKING.md`](HACKING.md) for more detailed instructions if you want to develop in this repo.
13-
That file also contains instructions for installing the Flambda backend compiler in a way
13+
That file also contains instructions for installing the OxCaml compiler in a way
1414
that it can be used to build OPAM packages.
1515

1616
## One-time setup for dev work or installation
@@ -24,27 +24,27 @@ $ eval $(opam env)
2424
$ opam install dune.3.15.2 menhir.20231231
2525
```
2626

27-
You probably then want to fork the `ocaml-flambda/flambda-backend` repo to your own Github org.
27+
You probably then want to fork the `oxcaml/oxcaml` repo to your own Github org.
2828

2929
## Branching and configuring
3030

3131
Use normal commands to make a branch from the desired upstream branch (typically `main`), e.g.:
3232
```
33-
$ git clone https://github.com/ocaml-flambda/flambda-backend
34-
$ cd flambda-backend
33+
$ git clone https://github.com/oxcaml/oxcaml
34+
$ cd oxcaml
3535
$ git checkout -b myfeature origin/main
3636
```
3737

38-
The Flambda backend tree has to be configured before building. The configure script is not checked
38+
The OxCaml tree has to be configured before building. The configure script is not checked
3939
in; you have to run `autoconf`. For example:
4040
```
4141
$ autoconf
42-
$ ./configure --prefix=/path/to/install/dir
42+
$ ./configure --prefix=/path/to/install/dir --enable-runtime5
4343
```
4444

4545
## Building and installing
4646

47-
To build and install the Flambda backend, which produces a compiler installation directory whose
47+
To build and install OxCaml, which produces a compiler installation directory whose
4848
layout is compatible with upstream, run:
4949
```
5050
$ make install

0 commit comments

Comments
 (0)