src/build.lisp @ 1d2776f7fa4a

Update to latest version of boots, get it building again
author Steve Losh <steve@stevelosh.com>
date Mon, 13 Apr 2020 21:23:33 -0400
parents 06972f89d220
children f592e6093609
(ql:quickload :brows)

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

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

#-(or sbcl ccl)
(error "Don't know how to build in this implementation.")