mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-11 11:42:51 -08:00
7 lines
214 B
Common Lisp
7 lines
214 B
Common Lisp
(defvar std-compile (symbol-function 'compile-file))
|
|
(defun compile-file (file &rest args &key (output-file 'T))
|
|
(funcall std-compile
|
|
file
|
|
:c-file t :h-file t :data-file t
|
|
:output-file output-file))
|
|
|