Changeset 12046
- Timestamp:
- 07/14/09 09:42:14 (14 years ago)
- Location:
- trunk/abcl
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/CHANGES
r12043 r12046 3 3 * Implementation of Franz Allegro CL Gates MP primitive (Tobias Rittweiler). 4 4 * improve performance of CLOS eql-specializers (Anton Vodonosov). 5 * 'build-from-lisp.sh' shell script (Tobias Rittweiler). 5 6 6 7 Version 0.15.0 -
trunk/abcl/README
r11494 r12046 62 62 paying attention to the comments in the file. 63 63 64 Start up one of the supported Common Lisp implementations in the65 directory containing this README file.66 64 67 Load build-abcl.lisp: 65 Use ./build-from-lisp.sh <lisp-of-choice>, e.g. 68 66 69 (load "build-abcl.lisp") 70 71 Then do: 72 73 (build-abcl:build-abcl :clean t :full t) 74 75 Wait for the build to finish and exit the host Lisp. 67 ./build-from-lisp.sh sbcl 76 68 77 69 Use abcl.bat on Windows or ./abcl on Unix to start ABCL. … … 79 71 to edit them if you move things around after the build. 80 72 73 74 If you're developing on ABCL, you may want to use 75 76 ./build-from-lisp.sh <implementation> --clean=nil 77 78 to not do a full rebuild. 79 80 81 81 In case of failure in the javac stage, you might try this: 82 82 83 (build-abcl:build-abcl :clean t :full t :batch nil)83 ./build-from-lisp.sh <implementation> --full=t --clean=t --batch=nil 84 84 85 85 This invokes javac separately for each .java file, which avoids running
Note: See TracChangeset
for help on using the changeset viewer.