ocaml / Zarith

The Zarith library implements arithmetic and logical operations over arbitrary-precision integers and rational numbers. The implementation, based on GMP, is very efficient.
Other
231 stars 70 forks source link

ocamldoc is not required to build Zarith #117

Closed dra27 closed 2 years ago

dra27 commented 2 years ago

configure complains if ocamldoc isn't found. However, the tool is only needed if you run the optional make doc step. This PR both makes the search optional and then adds error handling on the doc target if ocamldoc was not found.

Spotted in the wild - we build ocaml in CI without ocamldoc to reduce the cache sizes!