Unfortunately on MacOS, I can get ECL to compile; I can get McClim in SBCL; but I can’t get McClim in ECL. Wish this worked in SBCL.
Viewing post in DL-ROC.LISP jam comments
Edit: Scroll down to https://itch.io/post/16170658 to just see it working directly with sbcl in basically exactly the same way. The change to be portable was trivial.
I was doubling down on ECL viz sbcl’s lack of anti-llm policy. I was wondering if updating quicklisp might help
(ql:update-client)
(ql:update-all-dists)
(ql:quickload :mcclim)
. How do you install things on mac? I am a bit in the dark, but aren’t there basically BSD ports for mac named macports?
Anyway the only nonportable thing I think I have done is
(compile-file #P"some/file.lisp" :load t)
which portably would need to be
(compile-file #p"some/file.lisp")
(load #p"some/file.fas")
I think. I will try it on sbcl and change the useage notes to be compatible with sbcl.
