improve message for unsupported impl

This commit is contained in:
Masataro Asai 2016-10-11 23:21:27 +01:00
parent b5e037f287
commit b8dcece416

View file

@ -117,13 +117,14 @@ exec ros -- $0 "$@"
#-(or sbcl ccl clisp (and cmucl executable))
(defun %dump-executable (cmds out)
"more informative error message"
(declare (ignorable cmds))
(format *error-output*
"While dumping ~a to ~a:
ros dump executable is supported only when the following features are present:
(or sbcl ccl clisp (and cmucl executable))
"While dumping to ~a:
ros dump executable is supported only when the following features are satisfied:
(or sbcl ccl ecl clisp (and cmucl executable))
On CMUCL, :executable is supported on x86, solaris and sparc.
" cmds out)
" out)
(ros:quit 1))