mirror of
https://gitlab.com/vindarel/ciel.git
synced 2025-12-06 02:30:39 -08:00
Build a core image
This commit is contained in:
parent
159f9cd987
commit
cbe04153ad
3 changed files with 25 additions and 0 deletions
10
Makefile
Normal file
10
Makefile
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
LISP ?= sbcl
|
||||
|
||||
run:
|
||||
$(LISP) --load ciel.asd \
|
||||
--eval '(asdf:load-system :ciel)' \
|
||||
--eval '(in-package:ciel-user)'
|
||||
|
||||
image:
|
||||
$(LISP) --load build-image.lisp
|
||||
|
||||
|
|
@ -37,6 +37,15 @@ Rules
|
|||
|
||||
Clone, load the .asd, =(ql:quickload "ciel")= and =(in-package :ciel-user)=.
|
||||
|
||||
Alternatively, build a /core image/ of your lisp with CIEL's
|
||||
dependencies:
|
||||
|
||||
: sbcl --load build-image.lisp
|
||||
|
||||
and use it:
|
||||
|
||||
: sbcl --core ciel --eval '(in-package :ciel-user)'
|
||||
|
||||
CIEL is on [[https://ultralisp.org][Ultralisp]].
|
||||
|
||||
|
||||
|
|
|
|||
6
build-image.lisp
Normal file
6
build-image.lisp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
|
||||
(load "ciel.asd")
|
||||
(ql:quickload "swank")
|
||||
(ql:quickload "ciel")
|
||||
(in-package :ciel-user)
|
||||
(sb-ext:save-lisp-and-die "ciel")
|
||||
Loading…
Add table
Add a link
Reference in a new issue