Is this thing on? Ahem.
I "fixed" images, I think: at least, they work for me. It's currently a hack on top of a hack, but it does mostly work (except that I get recursive broken images quite often, probably because I'm in a utf-8 locale...
;; Was unable to read #u"file://closure/resources/icons/broken.png" as image, because of: ;; | #<CL-CHAR-STREAM {1001ACE951}> is probably no PNG file..
). Proof, if any is needed: http://www-jcsu.jesus.cam.ac.uk/~csr21/closure-pertelote.png and http://www-jcsu.jesus.cam.ac.uk/~csr21/closure-bbc.png.
So, possibly, that's item (1) on the closure home page dealt with. It compiles, and it basically runs for me in sbcl except that there seems to be an interesting race condition whereby computing discriminating functions on startup, probably in multiple threads at once, can cause compiler consistency problems. Not sure yet why this happens.
Does anyone have an opinion (and some free time) for TODO item (2)?
Cheers,
Christophe
Christophe Rhodes csr21@cam.ac.uk writes:
Is this thing on? Ahem.
Read you loud and clear.
I "fixed" images, I think: at least, they work for me. It's currently
Me too (temporary location):
http://amoroso.freeshell.org/closure-lpod.jpg
a hack on top of a hack, but it does mostly work (except that I get recursive broken images quite often, probably because I'm in a utf-8 locale...
;; Was unable to read #u"file://closure/resources/icons/broken.png" as image, because of: ;; | #<CL-CHAR-STREAM {1001ACE951}> is probably no PNG file..
I get this:
;; ++ [init] file://closure/resources/icons/broken.png 640x1
So, possibly, that's item (1) on the closure home page dealt with. It compiles, and it basically runs for me in sbcl except that there seems
I use CMUCL 19b and McCLIM CVS sources updated a few days ago under Slackware Linux 10.0.
Paolo
Paolo Amoroso amoroso@mclink.it writes:
I use CMUCL 19b and McCLIM CVS sources updated a few days ago under Slackware Linux 10.0.
I forgot to mention that, if you use CMUCL, it is *imperative* to initialize multiprocessing before starting Closure:
(mp::startup-idle-and-top-level-loops)
Paolo