Eric Marsden wrote:
>>>>>>"phj" == phj <[EMAIL PROTECTED]> writes:
>>>>>>
>>>>>>
>
> phj> Today,I have tried using hemlock to connect remote lisp process,but
> phj> after I typed
> phj> lisp -slave x.x.x.x:nnnn on command line,lisp gave out the following
> phj> message:
> phj>
> phj> Warning:
> phj> #<Command Line Switch "slave" -- ("x.x.x.x:nnnn")> is an illegal switch
>
>the -slave commandline option is enabled once the Hemlock subsystem is
>loaded, which isn't the case for your example. The solution is to dump
>an image containing Hemlock, either "manually" using
>
> (require :hemlock)
> (ext:save-lisp "cmucl+hemlock.img")
> lisp -core cmucl+hemlock.img
>
>or using the CMUCL config script, which is distributed with CMUCL
>
> /usr/local/cmucl/lib/cmucl/lib/config
>
>which should allow you to select subsystems interactively.
>
>
That is great , I could connect remote lisp process now.
Maybe lisp manual page should be updated too,there is nowhere metioned
this trick(if it were)
in manual page.thank you.
regards
Peng