2

我正在尝试在 CCL 下运行程序,因此当程序因任何原因完成运行时,它应该退出回操作系统。当前使用此命令行(在 Windows 上):

\ccl\wx86cl -l test.lisp -e (quit)

当程序成功运行到正常完成时退出,但如果出现错误,例如内存不足,它会在调试器中结束。当出现错误时,你如何告诉 Clozure 也退出?

4

1 回答 1

5

您不仅要捕获所有错误,而且还要防止在INVOKE-DEBUGGER调用时进入调试器。您可以设置*DEBUGGER-HOOK*为在未处理的错误时退出的函数。

$ ./bin/ccl/lx86cl64 
Clozure Common Lisp Version 1.11.5/v1.11.5  (LinuxX8664)

For more information about CCL, please see http://ccl.clozure.com.

CCL is free software.  It is distributed under the terms of the Apache
Licence, Version 2.0.
? *debugger-hook*
NIL
? (setf *debugger-hook* 
        (lambda (error hook)
          (declare (ignore hook))
          (format *error-output* "Crash: ~a" error) 
          (quit)))
#<Anonymous Function #x302000998C3F>

现在,使用未处理的错误对其进行测试:

? (error "Oh no")
Crash: Oh no

然后,你又回到了 shell。

请注意,BREAK总是进入调试器,因为它绑定*debugger-hook*到 NIL(这是故意的,用于调试)。

于 2018-10-19T07:45:19.793 回答