Experience porting to other Lisps #160
Replies: 2 comments 2 replies
-
Is Serapeum even really necessary? A quick Github search indicates that the only symbols used out of it are |
Beta Was this translation helpful? Give feedback.
-
When I try to load Coalton on ECL it still fails, and when compiled to coalton-impl/parser/read it shows:
This error can be avoided by commenting out line 436 of toplevel.lisp: (defun read-program (stream file &key (mode (error "you must supply this bozo!")))
"Read a PROGRAM from the COALTON-FILE."
(declare (type coalton-file file)
;; (type (member :file :toplevel-macro :test) mode)
(values program))
... However, when it continues to compile to coalton-library/types, a new error is displayed, but my shallow CL knowledge is not enough to solve it:
|
Beta Was this translation helpful? Give feedback.
-
So far I've tried to load Coalton on ECL and CLISP, and both fail. (Both stock on Debian Buster.)
ECL fails to load Serapeum, complaining about atomics not being supported or something.
CLISP fails to load Trivia because it claims there's a misplaced declaration.
Beta Was this translation helpful? Give feedback.
All reactions