ocamlearlybird icon indicating copy to clipboard operation
ocamlearlybird copied to clipboard

updating support for newer compilers

Open cdaringe opened this issue 3 years ago • 1 comments

Greetings! A project I am working on forcibly uses 4.13.1. What is involved in adding support for newer versions? I saw that a magic number is tracked, but not sure what needs to be done beyond that!

Thanks for the time & support :) I am willing to send patches as needed

cdaringe avatar Nov 07 '21 03:11 cdaringe

You need to implement the internal typenv library of 4.13. As ocaml's internal compiler libs API may have some breaking changes.

hackwaly avatar Nov 07 '21 05:11 hackwaly

OCaml 4.13 and 4.14 should be supported now (on master), but there's no release with that support yet.

By the way, compiler-libs expose everything necessary nowadays, so there's no need to vendor that code from the OCaml compiler anymore.

sim642 avatar Jun 19 '23 09:06 sim642