ocaml-batteries-team / batteries-included

Batteries Included project
http://ocaml-batteries-team.github.com/batteries-included/hdoc2/
Other
518 stars 106 forks source link

The deprecated Sort module has been removed since OCaml 4.08.0 #925

Closed soimort closed 5 years ago

soimort commented 5 years ago

See https://github.com/ocaml/ocaml/pull/1857.

batteries won't actually build under a clean installation of OCaml 4.08 or above, due to the absence of the Sort module:

File "src/batteries.mlv", line 37, characters 16-20:
Error: Unbound module Sort
1 error(s) encountered
Command exited with code 1.
Compilation unsuccessful after building 306 targets (215 cached) in 00:00:03.

Changing Line 37 to

##V<4.8## module Sort = Sort

solves the issue.

UnixJunkie commented 5 years ago

Thanks for the heads up.