mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
Change snow-chibi to work with Chicken 5
The method snow-chibi used to get the version of Chicken installed doesn't work with Chicken 5. Adding "-R chicken.platform" would make it work with Chicken 5, but then it wouldn't work with Chicken 4. In both Chicken 4 & 5, however, csi has a -release option that will just give the version number. So, I've changed the Chicken version detection in snow-chibi to use this option. Testing with... ./chibi-scheme tools/snow-chibi.scm implementations ...then seemed to work with both Chicken 4 & 5.
This commit is contained in:
parent
19f408a041
commit
13d4bbf1d1
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||
(define known-implementations
|
||||
'((chibi "chibi-scheme" (chibi-scheme -V) "0.7.3")
|
||||
(chicken "chicken" (csi -p "(chicken-version)") "4.9.0")
|
||||
(chicken "chicken" (csi -release) "4.9.0")
|
||||
(cyclone "cyclone" (icyc -vn) "0.5.3")
|
||||
(foment "foment")
|
||||
(gauche "gosh" (gosh -E "print (gauche-version)" -E exit) "0.9.4")
|
||||
|
|
Loading…
Add table
Reference in a new issue