+ Yoichiro Takehora <[EMAIL PROTECTED]>:

| So I run /lib/cmucl/lib/config by root, and select 1, change it as 
"/lib/cmucl/lib/lisp.core" from "library:lisp.core".
| And select 7, but the result was same.

AFAIK, all the config program does is create a new core file according
to how you want it configured.  It does not solve the question of how
the core file is found.

| What should I do to let CMUCL know the lisp.core file is lacated in
| /lib/cmucl/lib?

Set CMUCLLIB in the environment.  For example, I use the following
shell script to start cmucl:

#!/bin/sh
where=/store/lib/cmucl
CMUCLLIB=$where/lib
export CMUCLLIB
exec $where/lisp "$@"

- Harald

Reply via email to