Common lisp

Table of Contents

1. Common lisp   common_lisp

1.1. CL: Setup checklist

  1. https://www.quicklisp.org/beta/
  2. rlwrap sbcl --load quicklisp.lisp
  3. (quicklisp-quickstart:install)
  4. (ql:add-to-init-file)
  5. (ql:quickload '(swank quicklisp-slime-helper clhs))
  6. (clhs:install-clhs-use-local)
  7. cd ~/quicklisp/local-projects/ && git@github.com:fstamour/breeze.git

1.1.1. CL: FreeBSD specifics   freebsd

From pkg info --pkg-message sbcl:

If you plan to use Quicklisp, you must remove this line from /usr/local/etc/sbclrc.

The line in question is

(load "/usr/local/etc/asdf-init.lisp")

Warning: when you comment this line in /usr/local/etc/sbclrc, stumpwm will not work anymore if you installed it from FreeBSD's packages.

2. Related notes

Created: 2024-04-06 Sat 00:49