Octachron / codept

Contextual Ocaml DEPendencies Tool: alternative ocaml dependency analyzer
Other
59 stars 10 forks source link

Nativeint not recognized #10

Closed nojb closed 2 years ago

nojb commented 2 years ago

image

The problem may come from the fishy capitalization in

https://github.com/Octachron/codept/blob/4a7185f84679e2cf9eb1b434a3fe9f92d945f2d3/bundled/bundle.ml#L64

nojb commented 2 years ago

Also: CamlinternalOo is missing from that same list.

nojb commented 2 years ago

And Sys.Immediate64.

Octachron commented 2 years ago

Thanks for the report! This is indeed a dependency on the OCaml version that I forgot: this is a cache of the standard library signature that needs to updated on new version of the stdlib.

Octachron commented 2 years ago

This is now fixed with a test which check that the bundled stdlib maps to the real standard library across all version of OCaml 4 .

nojb commented 2 years ago

Thanks!