|
Revision 2878, 1.1 kB
(checked in by ksprotte, 9 months ago)
|
added cl-fad to thirdparty
|
| Line | |
|---|
| 1 |
Complete documentation for CL-FAD can be found in the 'doc' |
|---|
| 2 |
directory. |
|---|
| 3 |
|
|---|
| 4 |
CL-FAD also supports Nikodemus Siivola's HYPERDOC, see |
|---|
| 5 |
<http://common-lisp.net/project/hyperdoc/> and |
|---|
| 6 |
<http://www.cliki.net/hyperdoc>. |
|---|
| 7 |
|
|---|
| 8 |
1. Installation |
|---|
| 9 |
|
|---|
| 10 |
1.1. Probably the easiest way is |
|---|
| 11 |
|
|---|
| 12 |
(load "/path/to/cl-fad/load.lisp") |
|---|
| 13 |
|
|---|
| 14 |
This should compile and load CL-FAD on most Common Lisp |
|---|
| 15 |
implementations. |
|---|
| 16 |
|
|---|
| 17 |
1.2. With MK:DEFSYSTEM you can make a symbolic link from |
|---|
| 18 |
'cl-fad.system' and 'cl-fad-test.system' to your central registry |
|---|
| 19 |
(which by default is in '/usr/local/lisp/Registry/') and then issue |
|---|
| 20 |
the command |
|---|
| 21 |
|
|---|
| 22 |
(mk:compile-system "cl-fad") |
|---|
| 23 |
|
|---|
| 24 |
Note that this relies on TRUENAME returning the original file a |
|---|
| 25 |
symbolic link is pointing to. This will only work with AllegroCL |
|---|
| 26 |
6.2 if you've applied all patches with (SYS:UPDATE-ALLEGRO). |
|---|
| 27 |
|
|---|
| 28 |
1.3. You can also use ASDF instead of MK:DEFSYSTEM in a similar way |
|---|
| 29 |
(use the .asd files instead of the .system files). |
|---|
| 30 |
|
|---|
| 31 |
2. Test |
|---|
| 32 |
|
|---|
| 33 |
CL-FAD comes with a small test suite. To start it just load the file |
|---|
| 34 |
"test.lisp" and evaluate (CL-FAD-TEST:TEST). |
|---|