Skip to content

Instantly share code, notes, and snippets.

@cireu
Forked from mrluanma/gist:3328049
Created October 9, 2018 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cireu/2879848e1ba38e93141855aa7712d055 to your computer and use it in GitHub Desktop.
Save cireu/2879848e1ba38e93141855aa7712d055 to your computer and use it in GitHub Desktop.
分分钟在 windows 上配好一个 Common Lisp 环境。
## ccl + quicklisp + SLIME,假设你一直用的 Emacs
mkdir c:\bin
cd c:\bin
curl -O ftp://ftp.clozure.com/pub/release/1.8/ccl-1.8-windowsx86.zip
curl -O http://beta.quicklisp.org/quicklisp.lisp
7z x ccl-1.8-windowsx86.zip ccl
ccl\wx86cl -l quicklisp.lisp
(quicklisp-quickstart:install)
(ql:add-to-init-file)
(ql:quickload "quicklisp-slime-helper")
(quit)
# add this to your ~/.emacs
(load (expand-file-name "~/quicklisp/slime-helper.el"))
(setq inferior-lisp-program "C:/bin/ccl/wx86cl")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment