Hi, Quoting Christopher Zimmermann <madroach@zakweb.de>:
I just tried to run an ocaml program using Big_int. It failed. big_int.mli, big_int.cmi and big_int.cmx are present. big_int.cma and big_int.cmxa are missing. A snippet from the toplevel: # Big_int.unit_big_int;; Reference to undefined global `Big_int'
Didn't you forget to load nums.cma in the toplevel? E.g.:
$ ocaml nums.cma
Objective Caml version 3.09.1
# Big_int.unit_big_int;;
- : Big_int.big_int = <abstr>
Cheers,
Samuel.