繁体   English   中英

如何在Emacs中实现错误回溯?

[英]How to realize error traceback in Emacs?

我正在Ocaml中编写一个编译器。 当我在终端中使用make编译和测试它时,tracback运行良好,例如:

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

但是当我在我的Emacs中通过Meta-x compile然后make编译并测试它时,它不会在缓冲区中显示回溯部分:

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

我的.emacs有一部分是我从朋友那里复制的追溯: http//paste.ubuntu.com/628838/

谁能告诉我如何修改我的.emacs以便它显示在终端中的追溯? 非常感谢你

你在哪里写export OCAMLRUNPARAM=b

如果你在makefile中写了这个(↹代表一个标签):

↹export OCAMLRUNPARAM=b
↹./Simpler-Basic test.sib

然后它不起作用,因为每个makefile命令都在一个单独的shell中执行,因此环境变量赋值在第一行完成后消失。 您可以将两条线组合在一条逻辑线中:

↹export OCAMLRUNPARAM=b; \
↹./Simpler-Basic test.sib

如果您在Emacs中运行Ocaml程序时总是想要回溯,请在.emacs设置环境变量:

(setenv "OCAMLRUNPARAM" "b")

为了让Emacs将回溯消息识别为带有位置的错误消息,您需要在compilation-regexp-alist注册它们。 在你的.emacs放置这样的东西(未经测试):

(eval-after-load "caml"
  (add-to-list 'compilation-regexp-alist
               '("\\(^Raised at\\|Called from\\) file \"\\([^"\n]+\\)\", line \\([0-9]+\\)"
                 2 3)))

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM