adding all of botlist, initial add
[botlist.git] / botclient / botnetclient / lisp / lib / java / abcl / README
blob77a42f4e4431740063bd363ceb464b361b98f182
1 GENERAL INFORMATION
2 -------------------
4 Armed Bear Common Lisp is an implementation of ANSI Common Lisp that runs in a
5 Java virtual machine.
8 LICENSE
9 -------
11 Armed Bear Common Lisp is distributed under the GNU General Public License
12 (with a special exception described below).
14 A copy of GNU General Public License (GPL) is included in this distribution, in
15 the file COPYING.
17 Linking this software statically or dynamically with other modules is making a
18 combined work based on this software. Thus, the terms and conditions of the GNU
19 General Public License cover the whole combination.
21 As a special exception, the copyright holders of this software give you
22 permission to link this software with independent modules to produce an
23 executable, regardless of the license terms of these independent modules, and
24 to copy and distribute the resulting executable under terms of your choice,
25 provided that you also meet, for each linked independent module, the terms and
26 conditions of the license of that module. An independent module is a module
27 which is not derived from or based on this software. If you modify this
28 software, you may extend this exception to your version of the software, but
29 you are not obligated to do so. If you do not wish to do so, delete this
30 exception statement from your version.
33 INSTALLATION
34 ------------
36 To build ABCL, you'll need a 1.4 or 1.5 JDK and a supported Common Lisp
37 implementation (SBCL, CMUCL, OpenMCL, Allegro, LispWorks, or CLISP).
39 Edit the file customizations.lisp, in the directory containing this README
40 file, to suit your situation, paying attention to the comments in the file.
42 Start up one of the supported Common Lisp implementations in the directory
43 containing this README file.
45 Load build-abcl.lisp:
47     (load "build-abcl.lisp")
49 Then do:
51     (build-abcl:build-abcl :clean t :full t)
53 Wait for the build to finish and exit the host Lisp.
55 Use abcl.bat on Windows or ./abcl on Unix to start ABCL. (Note that abcl.bat
56 and abcl contain absolute paths, so you'll need to edit the relevant file if
57 you move things around after the build.)
59 If the build fails in the javac stage, you might have better luck with this:
61     (build-abcl:build-abcl :clean t :full t :batch nil)
63 This invokes javac separately for each .java file, which is considerably slower
64 but avoids running into limitations on command line length.
67 BUGS
68 ----
70 ABCL is a very young implementation. You are certain to encounter bugs.
72 ABCL 0.0.9 fails 54 out of 21344 tests in the GCL ANSI test suite.
74 ABCL's CLOS does not handle on-the-fly redefinition of classes correctly, and
75 in any event is intolerably slow. There is no support for the long form of
76 DEFINE-METHOD-COMBINATION, and certain other required CLOS features are also
77 missing. Enough CLOS is there to run ASDF and CL-PPCRE, if you're in no hurry.
79 There is no MOP worth mentioning.
81 Since this is a very early public release, there might be build problems as
82 well as runtime bugs.
84 Please report problems to the j-devel mailing list:
86     armedbear-j-devel@lists.sourceforge.net
88 Have fun!
90 Peter Graves
91 October 18, 2005