|
From: Jacek G. <jm...@ec...> - 2001-07-23 10:03:44
|
Greetings,
I have been trying to compile matlisp (on a SuSE 7.1 system) for
integration with CMUCL.
Having set the cmu-lisp varialble in the makefile, and issued `make
cmu', the installation runs into a problem, which as a comparative
lisp novice, leaves me stumped.
I'd appreciate a prod in the right direction.
Error message included below . . .
Thanks,
Jacek
----------------------------------------------------------------
/usr/local/bin/cmucl -eval '(progn (load "start.lisp"))'
; Loading #p"/usr/local/src/matlisp-1.0b/start.lisp".
;; Loading #p"/usr/local/src/matlisp-1.0b/config.lisp".
;; Loading #p"/usr/local/src/matlisp-1.0b/system.dcl".
;;; Loading #p"/usr/local/src/matlisp-1.0b/packages.lisp".
;;; Loading #p"/usr/local/src/matlisp-1.0b/packages.lisp".
;;; Loading #p"/usr/local/src/matlisp-1.0b/packages.lisp".
;;; Loading #p"/usr/local/src/matlisp-1.0b/packages.lisp".
;;; Loading #p"/usr/local/src/matlisp-1.0b/packages.lisp".
;;; Loading #p"/usr/local/src/matlisp-1.0b/defsystem.lisp".
In: LAMBDA (FILENAME &REST ARGS &KEY OUTPUT-FILE ...)
#'(LAMBDA (FILENAME &REST ARGS &KEY OUTPUT-FILE ...)
(DECLARE (IGNORE ARGS))
(BLOCK C-COMPILE-FILE (RUN-UNIX-PROGRAM *C-COMPILER* `#)))
Note: Variable ERROR-FILE defined but never used.
Type-error in KERNEL::OBJECT-NOT-TYPE-ERROR-HANDLER:
#() is not of type (OR CONS
BASE-STRING
(MEMBER NIL :UNSPECIFIC :WILD)
COMMON-LISP::PATTERN)
Restarts:
0: [CONTINUE] Return NIL from load of "matlisp:system.dcl".
1: Return NIL from load of "start.lisp".
2: [ABORT ] Skip remaining initializations.
Debug (type H for help)
("DEFUN MAKE-PATHNAME" 268433182 8)[:OPTIONAL]
Source:
; File: target:code/pathname.lisp
(DEFUN MAKE-PATHNAME
(&KEY HOST (DEVICE # DEVP) (DIRECTORY # DIRP) (NAME # NAMEP) ...)
"Makes a new pathname from the component arguments. Note that host is
a host-structure or string."
(DECLARE (TYPE # HOST)
(TYPE # DEVICE)
(TYPE # DIRECTORY)
(TYPE # NAME TYPE)
...)
...)
0]
|