>>>>> "Nicolas" == Nicolas Neuss <[EMAIL PROTECTED]> writes:
Nicolas> Hi,
Nicolas> I wanted to test my new computer (1GB RAM) on some larger problems.
Nicolas> Unfortunately, I can't get CMUCL to work with this large space.
Nicolas> Trying
Nicolas> (defun f () (cons () (F)))
Nicolas> (F)
Nicolas> and watching with top, I observe that CMUCL dies having allocated around
Nicolas> 200MB.
Nicolas> This happens also when I start it with
Nicolas> cmucl -dynamic-space-size 800
Perhaps you're running out of stack space? The stack is about 256 MB.
For heap-allocated stuff, I'm pretty sure it works when you set the
dynamic-space-size to a larger value. At least that's been reported
here that it works; I've not actually had to use that.
Ray