mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-05 18:20:36 -08:00
update install docs
This commit is contained in:
parent
d748eaa263
commit
1c7782c2f6
3 changed files with 37 additions and 8 deletions
12
ANDROID-TERMUX.md
vendored
12
ANDROID-TERMUX.md
vendored
|
|
@ -60,6 +60,16 @@ Add to ~/.emacs.d/init.el
|
|||
start emacs
|
||||
|
||||
M-x slime
|
||||
|
||||
Install the UltraLisp distro for recent software for quicklisp:
|
||||
|
||||
```
|
||||
(ql-dist:install-dist "http://dist.ultralisp.org/"
|
||||
:prompt nil)
|
||||
(ql:update-all-dists) ; run newest updates
|
||||
```
|
||||
|
||||
Of course install CLOG an CLOG Builder for a rich GUI Lisp IDE
|
||||
```
|
||||
(ql:quickload :clog)
|
||||
```
|
||||
|
|
@ -70,4 +80,4 @@ A failure will occur for sqlite on sbcl, choose {use-value}
|
|||
```
|
||||
(ql:quickload :clog/tools)
|
||||
(clog-tools:clog-builder)
|
||||
```
|
||||
```
|
||||
|
|
|
|||
15
MACOS.md
vendored
15
MACOS.md
vendored
|
|
@ -41,12 +41,21 @@ sbcl --eval '(ql:quickload :quicklisp-slime-helper)' --quit
|
|||
8. You can now start emacs graphically or if did option 2 from terminal
|
||||
using emacs (and if desire terminal version use emacs -nw) and then use M-x slime
|
||||
|
||||
9. Install using slime CLOG:
|
||||
9. Install the UltraLisp distro for recent software for quicklisp:
|
||||
|
||||
```
|
||||
(ql:quickload :clog)
|
||||
(clog:run-demo 1)
|
||||
(ql-dist:install-dist "http://dist.ultralisp.org/"
|
||||
:prompt nil)
|
||||
(ql:update-all-dists) ; run newest updates
|
||||
```
|
||||
|
||||
10. Of course install CLOG an CLOG Builder for a rich GUI Lisp IDE
|
||||
```
|
||||
(ql:quickload :clog/tools)
|
||||
(clog-tools:clog-builder)
|
||||
```
|
||||
|
||||
|
||||
Tip: If use emacs graphically, you may find it easier to set the
|
||||
apple command key to also act as a Meta key:
|
||||
|
||||
|
|
|
|||
18
WINDOWS.md
vendored
18
WINDOWS.md
vendored
|
|
@ -1,5 +1,8 @@
|
|||
## Installing Common Lisp on Windows 64bit from Scratch
|
||||
|
||||
(For a simple non-emacs install see:
|
||||
https://github.com/rabbibotton/clog-win64-ez/releases)
|
||||
|
||||
1. Download and install rho-emacs:
|
||||
|
||||
https://gchristensen.github.io/rho-emacs/
|
||||
|
|
@ -73,11 +76,18 @@
|
|||
```
|
||||
Run Slime - M-x slime
|
||||
|
||||
7. Install CLOG:
|
||||
8.
|
||||
8. Install the UltraLisp distro for recent software for quicklisp:
|
||||
|
||||
```
|
||||
(ql:quickload :clog)
|
||||
(clog:run-demo 1)
|
||||
(ql-dist:install-dist "http://dist.ultralisp.org/"
|
||||
:prompt nil)
|
||||
(ql:update-all-dists) ; run newest updates
|
||||
```
|
||||
|
||||
9. Of course install CLOG an CLOG Builder for a rich GUI Lisp IDE
|
||||
```
|
||||
(ql:quickload :clog/tools)
|
||||
(clog-tools:clog-builder)
|
||||
```
|
||||
|
||||
[Learn about CLOG](README.md)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue