[elephant-devel] Clbuild
Alex Mizrahi
killerstorm at newmail.ru
Mon May 12 08:03:33 UTC 2008
RLR> (:depeonds-on ) expressions without dependence on SBCL? Can we just
RLR> use a compiler pragma like:
RLR> :depends-on (:uffi
RLR> #+sbcl :sb-posix
RLR> :cl-base64))
sure
RLR> in our asdf files? If so we will have to do something similar for
RLR> each supported system (see os.lisp):
RLR> (defmacro in-directory ((dir) &body body)
RLR> `(progn
RLR> (#+sbcl sb-posix:chdir
RLR> #+cmu unix:unix-chdir
RLR> #+allegro excl:chdir
RLR> #+lispworks hcl:change-directory
RLR> #+openmcl ccl:cwd
RLR> ,dir)
RLR> , at body))
i think this stuff is built-in (loaded automatically) on everything but
SBCL,
so no intervention is required.
(i've just checked this on everything but OpenMCL)
More information about the elephant-devel
mailing list