···434434`make -C testsuite parallel`:: see xref:testsuite/HACKING.adoc[]
435435436436You can use `make foo V=1` to build the target foo and show full
437437-commands instead of abbreviated names like OCAMLC, etc. This can be
437437+commands instead of abbreviated names like `OCAMLC`, etc. This can be
438438useful to know the flags to use to manually rebuild a file.
439439440440Additionally, there are some developer specific targets in link:Makefile.dev[].
···7437435. Visit https://ci.inria.fr/ocaml/job/precheck and log in. Click on
744744"Build with parameters".
745745746746-6. Fill in the REPO_URL and BRANCH fields as appropriate and run the build.
746746+6. Fill in the `REPO_URL` and `BRANCH` fields as appropriate and run the build.
7477477487487. You should receive a bunch of e-mails with the build logs for each
749749slave and each tested configuration (with and without flambda) attached.
+1-1
testsuite/HACKING.adoc
···12121313There are many kind of tests already, so the easiest way to start is
1414to extend or copy an existing test. To learn how to write new tests
1515-using ocamltest, read [OCAMLTEST.org](../ocamltest/OCAMLTEST.org).
1515+using ocamltest, read link:../ocamltest/OCAMLTEST.org[].
16161717Note: in april 2023, the test scripting language has changed: the
1818org-mode-based syntax was replaced by at C-like syntax. ocamltest
+2-2
typing/HACKING.adoc
···33inference. Here is a reading list to ease your discovery of the
44typechecker:
5566-https://caml.inria.fr/pub/docs/u3-ocaml/index.html[Using, Understanding, and Unraveling the OCaml Language by Didier Rémy] ::
66+https://caml.inria.fr/pub/docs/u3-ocaml/index.html[_Using, Understanding, and Unraveling the OCaml Language_ by Didier Rémy] ::
77This book provides (among other things) a formal description of parts
88of the core OCaml language, starting with a simple Core ML.
991010-https://okmij.org/ftp/ML/generalization.html[Efficient and Insightful Generalization by Oleg Kiselyov] ::
1010+https://okmij.org/ftp/ML/generalization.html[_Efficient and Insightful Generalization_ by Oleg Kiselyov] ::
1111This article describes the basis of the type inference algorithm used
1212by the OCaml type checker. It is a recommended read if you want to
1313understand the type-checker codebase, in particular its handling of