From acca50987e8bfb2a6479b2f43d37c59929828e2d Mon Sep 17 00:00:00 2001 From: vindarel Date: Fri, 7 Jan 2022 17:54:26 +0100 Subject: [PATCH] README: configuring Slime to start the CIEL image [ci skip] --- README.org | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.org b/README.org index 623feb0..cc3010c 100644 --- a/README.org +++ b/README.org @@ -133,6 +133,22 @@ and use it: : sbcl --core ciel --eval '(in-package :ciel-user)' +Then you can configure Slime to have the choice of the Lisp image to start: + +#+BEGIN_SRC lisp +(setq slime-lisp-implementations + ;; Your system SBCL: + `((sbcl ("sbcl" "--dynamic-space-size" "2000")) + ;; Our CIEL image: + (ciel ("sbcl" "--core" "/home/YOU/lisp/ciel/ciel" "--eval" "(in-package :ciel-user)")))) + +;; Choose the default image: +(setq slime-default-lisp 'ciel) +#+end_src + +Now, use =M-- M-x slime= (alt minus) and choose the Lisp image to start. You can +have more than one running in parallel. + TODO: we will distribute ready-to-use core images. ** With a binary. Use CIEL's custom REPL.