Changeset 13166
- Timestamp:
- 01/21/11 14:13:48 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/README
r13165 r13166 3 3 4 4 Armed Bear Common Lisp is an implementation of ANSI Common Lisp that 5 runs in a Java virtual machine. It compiles its code to Java byte6 code.5 runs in a Java virtual machine. It compiles Lisp code directly to 6 Java byte code. 7 7 8 8 … … 11 11 12 12 Armed Bear Common Lisp is distributed under the GNU General Public 13 License with classpath exception (describedbelow).13 License with a classpath exception (see "Classpath Exception" below). 14 14 15 15 A copy of GNU General Public License (GPL) is included in this … … 20 20 conditions of the GNU General Public License cover the whole 21 21 combination. 22 23 ** Classpath Exception 22 24 23 25 As a special exception, the copyright holders of this software give … … 39 41 After you have downloaded a binary release archive unpack it into its 40 42 own directory. To run ABCL directly from this directory, make sure 41 Java (version 1.5 or up) is in your shell's path. Then issue following42 command 43 Java (version 1.5 or up) is in your shell's path. Then issue the 44 following command: 43 45 44 46 cmd$ java -jar abcl.jar … … 73 75 ('javac') to compile the Java source of the ABCL implementation. 74 76 75 When deploying ABCL, the JDK isn't a requirement for the installation 76 site: ABCL compiles directly to byte code, avoiding the need for the 77 'javac' compiler in deployment environments. 77 Note that when deploying ABCL having JDK isn't a requirement for the 78 installation site, just the equivalent JRE, as ABCL compiles directly 79 to byte code, avoiding the need for the 'javac' compiler in deployment 80 environments. 78 81 79 82 … … 89 92 Then simply executing 90 93 91 unix$ 94 unix$ ant 92 95 93 96 or 94 cmd$ant.bat97 dos> ant.bat 95 98 96 99 from the directory containing this README file will create an … … 119 122 don't want to know anything about Java. 120 123 121 First, copy the file 'customizations.lisp.in' to customization.lisp',124 First, copy the file 'customizations.lisp.in' to 'customization.lisp', 122 125 in the directory containing this README file, editing to suit your 123 126 situation, paying attention to the comments in the file. The critical … … 138 141 unix$ ./build-from-lisp.sh sbcl 139 142 140 After a successful build, you may use 'abcl.bat' on Windows or 'abcl' 141 on Unix to start ABCL. Note that this wrappers contain absolute 142 paths, so you'll need to edit them if you move things around after the 143 build. 143 After a successful build, you may use 'abcl' ('abcl.bat' on Windows) 144 to start ABCL. Note that this wrappers contain absolute paths, so 145 you'll need to edit them if you move things around after the build. 144 146 145 147 If you're developing on ABCL, you may want to use … … 178 180 DEFINE-METHOD-COMBINATION - which is an ongoing effort. 179 181 180 The re is no MOP worth mentioning.182 The MOP implementation is incomplete. 181 183 182 184 Patches to address any of the issues mentioned above will
Note: See TracChangeset
for help on using the changeset viewer.