On 12/13/11 Dec 13 -9:28 AM, Mark H. David wrote:
Is there any way to have ASDF compile several files with with-compilation-unit wrapped around the compilation?
asdf-devel mailing list asdf-devel@common-lisp.net http://lists.common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel
That's the default mode of operation:
(defmethod perform-plan ((steps list) &key) (let ((*package* *package*) (*readtable* *readtable*)) (with-compilation-unit () (loop :for (op . component) :in steps :do (perform-with-restarts op component)))))
Cheers, r