[slime-devel] Startup problem with cmucl

Hi! I tried to start slime on a freebsd system. So I typed M-x slime and got the following: CMU Common Lisp 18e, running on nanni.riic.uni-linz.ac.at With core: /.amd_mnt/johnson/vol/vol0/localF5/lib/cmucl/lib/lisp.core Dumped on: Thu, 2003-04-03 20:07:59+02:00 on cvs2.cons.org See <http://www.cons.org/cmucl/> for support information. Loaded subsystems: Python 1.1, target Intel x86 CLOS 18e (based on PCL September 16 92 PCL (f)) * ; Loading #p"/.amd_mnt/johnson/vol/vol0/home/reichr/open_cvs/slime/swank-loader.lisp". ;; Loading #p"/.amd_mnt/johnson/vol/vol0/home/reichr/.slime/fasl/cmu-18e/swank-backend.x86f". ;; Loading #p"/.amd_mnt/johnson/vol/vol0/home/reichr/.slime/fasl/cmu-18e/nregex.x86f". ;; Loading #p"/.amd_mnt/johnson/vol/vol0/home/reichr/.slime/fasl/cmu-18e/swank-source-path-parser.x86f". ;; Loading #p"/.amd_mnt/johnson/vol/vol0/home/reichr/.slime/fasl/cmu-18e/swank-cmucl.x86f". ;; Loading #p"/.amd_mnt/johnson/vol/vol0/home/reichr/.slime/fasl/cmu-18e/swank.x86f". Warning: These Swank interfaces are unimplemented: (RESTART-FRAME RETURN-FROM-FRAME WHO-MACROEXPANDS WHO-SPECIALIZES) T * Type-error in KERNEL::OBJECT-NOT-TYPE-ERROR-HANDLER: NIL is not of type HOST-ENTRY Restarts: 0: [ABORT] Return to Top-Level. Debug (type H for help) (SWANK-BACKEND::RESOLVE-HOSTNAME "127.0.0.1") Source: ; File: /home/reichr/site-lisp/slime/swank-cmucl.lisp (HOST-ENTRY-ADDR-LIST HOSTENT) 0] Any ideas? Stefan.

Stefan Reichör <xsteve@riic.at> writes:
Hi!
I tried to start slime on a freebsd system.
So I typed M-x slime and got the following:
[...]
* Type-error in KERNEL::OBJECT-NOT-TYPE-ERROR-HANDLER: NIL is not of type HOST-ENTRY
Restarts: 0: [ABORT] Return to Top-Level.
Debug (type H for help)
(SWANK-BACKEND::RESOLVE-HOSTNAME "127.0.0.1") Source: ; File: /home/reichr/site-lisp/slime/swank-cmucl.lisp (HOST-ENTRY-ADDR-LIST HOSTENT) 0]
Any ideas?
I'm not sure of the cause, and I'm in a pre-midsummer-rush just now, but as a workaround I suggest taking out the :host argument in `create-socket' of swank-backend.lisp. The effect will be to bind the server's listen-socket globally instead of the loopback interface. -Luke

Luke Gorrie <luke@bluetail.com> writes:
I'm not sure of the cause, and I'm in a pre-midsummer-rush just now, but as a workaround I suggest taking out the :host argument in `create-socket' of swank-backend.lisp. ^^^^^^^^^^^^^ I meant swank-cmucl.

Luke Gorrie <luke@bluetail.com> writes:
Luke Gorrie <luke@bluetail.com> writes:
I'm not sure of the cause, and I'm in a pre-midsummer-rush just now, but as a workaround I suggest taking out the :host argument in `create-socket' of swank-backend.lisp. ^^^^^^^^^^^^^ I meant swank-cmucl.
Thanks, that fixed the problem for me. :-) Raymond Wiker <Raymond.Wiker@fast.no> writes:
Maybe check that 127.0.0.1 is resolvable (probably requires that DNS is setup correctly). Alternatively, use "localhost" instead of "127.0.0.1" as the value for *loopback-interface*.
That didn't work in my case. Thanks for the fast response. Stefan.

Luke Gorrie writes:
Stefan Reichör <xsteve@riic.at> writes:
Hi!
I tried to start slime on a freebsd system.
So I typed M-x slime and got the following:
[...]
* Type-error in KERNEL::OBJECT-NOT-TYPE-ERROR-HANDLER: NIL is not of type HOST-ENTRY
Restarts: 0: [ABORT] Return to Top-Level.
Debug (type H for help)
(SWANK-BACKEND::RESOLVE-HOSTNAME "127.0.0.1") Source: ; File: /home/reichr/site-lisp/slime/swank-cmucl.lisp (HOST-ENTRY-ADDR-LIST HOSTENT) 0]
Any ideas?
I'm not sure of the cause, and I'm in a pre-midsummer-rush just now, but as a workaround I suggest taking out the :host argument in `create-socket' of swank-backend.lisp.
The effect will be to bind the server's listen-socket globally instead of the loopback interface.
Maybe check that 127.0.0.1 is resolvable (probably requires that DNS is setup correctly). Alternatively, use "localhost" instead of "127.0.0.1" as the value for *loopback-interface*. Just guessing.
participants (3)
-
Luke Gorrie
-
Raymond Wiker
-
Stefan Reichör