I am writing a compiler in Ocaml. The tracback works well when I compile and test it with make
in a terminal, for instance:
export OCAMLRUNPARAM=b
./Simpler-Basic test.sib
Fatal error: exception Match_failure("interp.ml", 45, 21)
Called from file "interp.ml", line 97, characters 72-86
Called from file "list.ml", line 74, characters 24-34
Called from file "interp.ml", line 108, characters 9-35
Called from file "main.ml", line 54, characters 4-17
make: *** [all] Error 2
But when I compile and test it in my Emacs by Meta-x compile
followed by make
, it does not show the traceback part in the buffer:
make
export OCAMLRUNPARAM=b
./Simpler-Basic test.sib
Fatal error: exception Match_failure("interp.ml", 45, 21)
make: *** [all] Error 2
Compilation exited abnormally with code 2 at Sat Jun 18 19:03:04
There is a part in my .emacs
to do traceback that I copied from a friend: http://paste.ubuntu.com/628838/
Could anyone tell me how to amend my .emacs
so that it shows traceback as in a terminal? Thank you very much