From d4b738d6c0b354de817fa490b50814e40872b3d0 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Mon, 15 Sep 2003 16:56:13 +0000 Subject: [PATCH] 0.8.3.69: Cosmetic fixes ... document MacOS X's stack size limitation in README ... annoying placement of a close quote in asdf-module.mk --- README | 10 ++++++++++ contrib/asdf-module.mk | 2 +- version.lisp-expr | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README b/README index 5fed77a..f02c9ec 100644 --- a/README +++ b/README @@ -37,3 +37,13 @@ for OpenBSD: 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.) + +for Darwin: + PURIFY (which can be used alone but is also used by the system when + saving a new core) uses more stack than the default limit on MacOS + X.2. Therefore, in order to get PURIFY to work reliably, you need + to increase the limit, with e.g. + limit stack 8192 # for the default shell, tcsh + ulimit -s 8192 # for bash + before running SBCL. This is also necessary when building the system + from sources, as part of the build process involves saving a new core. diff --git a/contrib/asdf-module.mk b/contrib/asdf-module.mk index 15e5268..9bfb44c 100644 --- a/contrib/asdf-module.mk +++ b/contrib/asdf-module.mk @@ -9,7 +9,7 @@ all: $(EXTRA_ALL_TARGETS) --eval "(quit)" test: all - echo "(asdf:operate (quote asdf:load-op) :$(SYSTEM)) "\ + echo "(asdf:operate (quote asdf:load-op) :$(SYSTEM))" \ "(asdf:operate (quote asdf:test-op) :$(SYSTEM))" | \ $(SBCL) --eval '(load "../asdf/asdf")' diff --git a/version.lisp-expr b/version.lisp-expr index a001817..d0e3fab 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.8.3.68" +"0.8.3.69" -- 1.7.10.4