jsdey@optonline.net writes:
[snip]
;; Compiling /Users/robo2/Lisp/slime/swank-openmcl.lisp... ; Warning: Interface file #4P"ccl:darwin-headers;libc;functions.cdb" does not exist. ; While executing: CCL::CDB-OPEN Read error between positions 6424 and 6539 in /Users/robo2/Lisp/slime/swank-openmcl.lisp.
Error in process listener(1): Foreign function not found: OS::|tmpnam| While executing: CCL::LOAD-EXTERNAL-FUNCTION Type :POP to abort.
Type :? for other options. 1 >
It seems that your OpenMCL installation is not quite complete. You also need the "cdb" files. The cdb files contain the prototypes of many common C functions and SWANK needs some of those. See also http://clozure.com/pipermail/openmcl-devel/2004-February/001424.html
To test that the cdb files just type
(#_getpid)
into OpenMCL (without Emacs). This should return the process id. If something is wrong with your setup, you will get an error message as above.
Helmut.