0.7.3.4:
[sbcl.git] / README
1 GENERAL INFORMATION
2
3 Welcome to SBCL.
4
5 To find out more about who created the system, see the "CREDITS" file.
6
7 If you'd like information about the legalities of copying the system,
8 see the "COPYING" file.
9
10 If you'd like to install or build the system, see the "INSTALL" file.
11
12 If you'd like more information about using the system, see the man
13 page, "sbcl.1", or the user manual in the "doc/" subdirectory of the
14 distribution. (The user manual is maintained as DocBook SGML in the
15 source distribution; there is an HTML version in the binary
16 distribution.)
17
18 The system is a work in progress. See the "TODO" file in the source
19 distribution for some highlights.
20
21 If you'd like to make suggestions, report a bug, or help to improve the
22 system, please send mail to one of the mailing lists:
23   sbcl-help@lists.sourceforge.net
24   sbcl-devel@lists.sourceforge.net
25
26
27 SYSTEM-SPECIFIC HINTS
28
29 for OpenBSD:
30   It's reported for CMU CL (by Darren Bane on the comp.lang.lisp newsgroup,
31   2002-04-22) that OpenBSD 3.0 has stricter ulimit values, and/or enforces
32   them more strictly, than its predecessors, and so CMU CL's initial mmap()
33   won't work unless you increase the limit on the data segment, e.g. with
34     ulimit -S -d 524288
35   before you run CMU CL. The same is probably true of SBCL, but hasn't been
36   tested yet. (As of sbcl-0.7.3, SBCL has only been tested on OpenBSD 2.9
37   and earlier.)