Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

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.