It there a way to get a backtrace for exceptions occurring in the toplevel
(for example, getting more information when the stack blows)? I’ve read that
there was an equivalent of the -b option that ocamlrun uses, but I couldn’t
find any subsequent information on it.
Thanks!
_______________________________________________
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs
In 3.11.x there is Printexc.record_backtrace which controls the -b
flag, and Printexc.get_backtrace to get the trace of the last
exception.
If you want to see backtraces printed automatically in the toplevel,
try my patch:
http://ambassadortothecomputers.blogspot.com/2010/03/updated-backtrace-patch.html
Jake