1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-26 22:28:26 +03:00
mal/impls/common-lisp/run-mkcl.lisp

22 lines
851 B
Common Lisp
Raw Permalink Normal View History

(require 'asdf)
(push *default-pathname-defaults* asdf:*central-registry*)
(defvar *raw-command-line-args* (loop
:for index
:from 1
:below (mkcl:argc)
:collect (mkcl:argv index)))
(defvar *command-line-args* (subseq *raw-command-line-args*
(min (1+ (position "--" *raw-command-line-args* :test #'string=))
(length *raw-command-line-args*))))
;; Suppress compilation output
(let ((*error-output* (make-broadcast-stream))
(*standard-output* (make-broadcast-stream)))
(format *standard-output* "~a" *command-line-args*)
(asdf:load-system (car *command-line-args*) :verbose nil))
(mal:main (cdr *command-line-args*))
(quit)