public
Description: A distribution of Aquamacs, SBCL and SLIME which offers the simplest way to run Common Lisp on Mac OS X
Homepage: http://www.newartisans.com/software/readylisp.html
Clone URL: git://github.com/jwiegley/ready-lisp.git
Search Repo:
Click here to lend your support to: ready-lisp and make a donation at www.pledgie.com !
name age message
folder .gitignore Sun Apr 27 17:49:29 -0700 2008 Added *.dmg to the ignore file. [jwiegley]
folder .gitmodules Fri Aug 08 00:34:07 -0700 2008 Put full Git URLs into .gitmodules, instead of ... [jwiegley]
folder Makefile Tue Apr 29 18:08:07 -0700 2008 Remove SLIME before cloning it again. [jwiegley]
folder NEWS Sat Apr 26 02:20:26 -0700 2008 Updated the NEWS and README files. [jwiegley]
folder README Sun Apr 27 15:08:06 -0700 2008 Added customize-target-features.lisp to allow f... [jwiegley]
folder TODO Sat Aug 30 13:40:03 -0700 2008 Added the skeleton of a TODO file. [jwiegley]
folder bootstrap.lisp Thu Apr 24 23:35:47 -0700 2008 Explicitly include the CL-FAD library. [jwiegley]
folder build.sh Thu Jul 17 02:05:56 -0700 2008 Added a missing check if PPC_HOST has a value. [jwiegley]
folder customize-target-features.lisp Sun Apr 27 15:08:06 -0700 2008 Added customize-target-features.lisp to allow f... [jwiegley]
folder dist/ Sat Apr 26 02:01:46 -0700 2008 Updated background image to reflect the latest ... [jwiegley]
folder doc/ Sun Apr 27 00:24:12 -0700 2008 Completely revised the Makefile to represent a ... [jwiegley]
folder sbcl &rarr eb10fa6 Sat Apr 26 02:04:30 -0700 2008 Updated SBCL submodule to reference sbcl_1_0_!6... [jwiegley]
folder site-lisp/ Mon May 05 14:49:24 -0700 2008 The ppc platform is now under the powerpc direc... [jwiegley]
folder slime &rarr 859d3ae Sat Apr 26 01:25:09 -0700 2008 Updated SLIME [jwiegley]
README
         ========================
          Welcome to Ready Lisp!
         ========================

The intention of this project to provide a fulling working Lisp environment
that's only a double-click away for Mac OS X users.

This package includes the following code items:

 - Aquamacs 1.3b
 - SBCL (Steel Bank Common Lisp) 1.0.16
 - SLIME (Superior Lisp Interaction Mode for Emacs) CVS 2008-04-24
 - paredit.el
 - redshank.el
 - cldoc.el

It also includes the following documentation, all integrated with the Info
system (just press `C-h i' within Emacs to view them):

 - ANSI Common Lisp HyperSpec
 - SLIME documentation
 - ASDF documentation
 - SBCL user's manual

There are also HTML versions of all documentation, and PDF versions of most
documentation, available in these two locations:

  Ready Lisp.app/Contents/Resources/html
  Ready Lisp.app/Contents/Resources/pdf

Everthing has been pre-configured for you to enable all options and turn on
all modes.  If you wish to configure things, edit this file:

  Ready Lisp.app/Contents/Resources/site-lisp/init.lisp.el


Happy Lisping,
  John Wiegley @ http://www.newartisans.com


----------------------------------------------------------------------

NOTE: 64-bit and threading support are not enabled in Ready Lisp, because
neither of these is officially supported by SBCL on Mac OS X (yet).  If you
wish to enable them, you will have to build your own Ready Lisp from sources.
Fortunately, this process has been made quite simple for you:

  git clone git://github.com/jwiegley/ready-lisp.git
  cd ready-lisp
  make

This may take quite a while, but eventually it will leave a .dmg file in an
"image" sub-directory.

To build with 64-bit Intel support:

  make ARCH=x86_64

To build with threading enabled:

  make THREADING=yes

To build a universal binary, assuming you have ssh access to a PowerPC box
named "ppcbox":

  make PPC_HOST=ppcbox

If you wish to update any of the sub-packages to newer versions, edit the
Makefile to select the version(s) you want, run "git checkout <TAG>" within
sbcl to select a release tag, and finally run "make clean", followed by
another "make".