Steel Bank Common Lisp
Go to file
Christophe Rhodes 09d7974601 0.7.10.10:
Working INLINE inside MACROLET for user code.
		(more or less as per CSR sbcl-devel 2002-12-03)
	... change tricky cross-compiled inline functions to source
		transforms (including adding some functions to the
		function database)
	... use now-working FUNCTION-LAMBDA-EXPRESSION to get the
		expander function for local macros
	... build a complex LAMBDA-WITH-LEXENV for inlining user code
		(like CMUCL's INLINE-SYNTACTIC-CLOSURE-LAMBDA does)
	Some miscellaneous frobs
	... actually signal a style warning for array code (though it
		might actually be in currently-dead-but-should-be-alive
		code)
	... actually test the return value in the second half of
		filesys.test.sh
	... minor text adjustments (no more calling this period "early
		0.7.x")
2002-12-04 15:23:00 +00:00
contrib 0.7.8.55: 2002-10-24 16:24:08 +00:00
doc 0.7.9.62: 2002-11-21 16:52:06 +00:00
src 0.7.10.10: 2002-12-04 15:23:00 +00:00
tests 0.7.10.10: 2002-12-04 15:23:00 +00:00
tools-for-build 0.7.9.67: 2002-11-25 13:24:15 +00:00
.cvsignore 0.7.6.22: 2002-08-14 13:28:23 +00:00
base-target-features.lisp-expr 0.7.7.24: 2002-09-15 14:20:22 +00:00
binary-distribution.sh 0.7.4.40: 2002-06-20 11:23:48 +00:00
BUGS 0.7.10.10: 2002-12-04 15:23:00 +00:00
build-order.lisp-expr 0.7.7.20-backend-cleanup-1.5: 2002-09-10 17:15:26 +00:00
clean.sh 0.7.3.4: 2002-04-26 14:40:47 +00:00
common-lisp-exports.lisp-expr Initial revision 2000-09-18 01:26:16 +00:00
COPYING Initial revision 2000-09-18 01:26:16 +00:00
CREDITS 0.7.10.9: 2002-12-04 10:00:51 +00:00
distclean.sh 0.pre7.8: 2001-08-10 14:43:17 +00:00
html-distribution.sh integration hassles, cont'd: 2002-01-19 21:17:41 +00:00
INSTALL 0.7.7.16: 2002-09-05 13:15:48 +00:00
install.sh 0.7.7.34: 2002-09-21 05:43:20 +00:00
make-config.sh 0.7.9.67: 2002-11-25 13:24:15 +00:00
make-genesis-2.sh 0.7.9.1: 2002-10-26 05:30:58 +00:00
make-host-1.sh 0.7.9.1: 2002-10-26 05:30:58 +00:00
make-host-2.sh 0.7.9.1: 2002-10-26 05:30:58 +00:00
make-target-1.sh 0.6.12.7.flaky1: 2001-05-15 14:08:31 +00:00
make-target-2.sh 0.7.9.6: 2002-10-27 14:52:48 +00:00
make.sh 0.7.9.7: 2002-10-27 16:02:56 +00:00
NEWS 0.7.10.10: 2002-12-04 15:23:00 +00:00
package-data-list.lisp-expr 0.7.10.10: 2002-12-04 15:23:00 +00:00
PRINCIPLES Initial revision 2000-09-18 01:26:16 +00:00
pubring.pgp Initial revision 2000-09-18 01:26:16 +00:00
README 0.7.3.6: 2002-04-30 01:23:23 +00:00
slam.sh 0.7.9.5: 2002-10-27 05:04:46 +00:00
source-distribution.sh 0.6.10: 2001-01-15 02:28:27 +00:00
STYLE Initial revision 2000-09-18 01:26:16 +00:00
tagify.sh Initial revision 2000-09-18 01:26:16 +00:00
TLA 0.7.7.16: 2002-09-05 13:15:48 +00:00
TODO 0.7.10.10: 2002-12-04 15:23:00 +00:00
UGLINESS Initial revision 2000-09-18 01:26:16 +00:00
version.lisp-expr 0.7.10.10: 2002-12-04 15:23:00 +00:00
wc.sh 0.6.11.40: 2001-04-17 14:43:42 +00:00

GENERAL INFORMATION

Welcome to SBCL.

To find out more about who created the system, see the "CREDITS" file.

If you'd like information about the legalities of copying the system,
see the "COPYING" file.

If you'd like to install or build the system, see the "INSTALL" file.

If you'd like more information about using the system, see the man
page, "sbcl.1", or the user manual in the "doc/" subdirectory of the
distribution. (The user manual is maintained as DocBook SGML in the
source distribution; there is an HTML version in the binary
distribution.)

The system is a work in progress. See the "TODO" file in the source
distribution for some highlights.

If you'd like to make suggestions, report a bug, or help to improve the
system, please send mail to one of the mailing lists:
  sbcl-help@lists.sourceforge.net
  sbcl-devel@lists.sourceforge.net


SYSTEM-SPECIFIC HINTS

for OpenBSD:
  OpenBSD 3.0 has stricter ulimit values, and/or enforces them more
  strictly, than its predecessors. Therefore SBCL's initial mmap()
  won't work unless you increase the limit on the data segment from
  the OpenBSD defaults, e.g. with
    ulimit -S -d 1000000
  before you run SBCL. Otherwise SBCL fails with a message like
  "ensure_space: failed to validate xxxxxxx bytes at yyyyy". (SBCL
  is just allocating this huge address space, not actually using this
  huge memory at this point. OpenBSD <3.0 had no problem with this,
  but OpenBSD 3.0 is less hospitable.)