src/build.lisp @ 498989a23d4d

Initial commit
author Steve Losh <steve@stevelosh.com>
date Sun, 18 Mar 2018 11:56:52 -0400
parents (none)
children 597bba1ad599
(ql:quickload :cacl)

#+sbcl
(progn
  (sb-ext:gc :full t)
  (sb-ext:save-lisp-and-die
    "cacl"
    :executable t
    :compression nil
    :toplevel #'cacl:toplevel
    :save-runtime-options t))

#+ccl
(progn
  (ccl:gc)
  (ccl:save-application
    "cacl"
    :toplevel-function #'cacl:toplevel
    :purify t
    :prepend-kernel t))