Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/chibi.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -1683,6 +1683,7 @@ installed. The following are currently supported:
\item{guile - version >= 3.0.7}
\item{kawa - version >= 2.0; you need to add the install dir to the search path, e.g. \scheme{-Dkawa.import.path=/usr/local/share/kawa/lib/*.sld}}
\item{loko - version >= 0.12.2}
\item{meevax - version >= 0.5.461}
\item{mit-scheme - version >= 12.1}
\item{larceny - version 0.98; you need to add "lib/Snow" to the paths in startup.sch}
\item{mosh - version >= 0.29-rc1}
Expand Down
13 changes: 13 additions & 0 deletions lib/chibi/snow/commands.scm
Original file line number Diff line number Diff line change
Expand Up @@ -1563,6 +1563,10 @@
(- (string-length (car kawa-classpath)) 8)))))))
((loko)
(list "/usr/local/share/r6rs"))
((meevax)
(list
(make-path
(car (process->string-list '(meevax "--library-directories"))))))
((mit-scheme)
(list
(make-path
Expand Down Expand Up @@ -1734,6 +1738,11 @@
(if lib-path
`(loko -std=r7rs --program ,file)
`(loko -std=r7rs --program ,file))))
((meevax)
(let ((install-dir (path-resolve install-dir (current-directory))))
(if lib-path
`(meevax -A ,install-dir -A ,lib-path ,file)
`(meevax -A ,install-dir ,file))))
((mit-scheme)
(let ((install-dir (path-resolve install-dir (current-directory))))
(if lib-path
Expand Down Expand Up @@ -2021,6 +2030,7 @@
((eq? impl 'guile) (get-install-library-dir impl cfg))
((eq? impl 'kawa) (get-install-library-dir impl cfg))
((eq? impl 'loko) (get-install-library-dir impl cfg))
((eq? impl 'meevax) (get-install-library-dir impl cfg))
((eq? impl 'mit-scheme) (get-install-library-dir impl cfg))
((eq? impl 'mosh) (get-install-library-dir impl cfg))
((eq? impl 'racket) (get-install-library-dir impl cfg))
Expand All @@ -2045,6 +2055,7 @@
((eq? impl 'guile) (get-install-library-dir impl cfg))
((eq? impl 'kawa) (get-install-library-dir impl cfg))
((eq? impl 'loko) (get-install-library-dir impl cfg))
((eq? impl 'meevax) (get-install-library-dir impl cfg))
((eq? impl 'mit-scheme) (get-install-library-dir impl cfg))
((eq? impl 'mosh) (get-install-library-dir impl cfg))
((eq? impl 'racket) (get-install-library-dir impl cfg))
Expand Down Expand Up @@ -2084,6 +2095,8 @@
(car (get-install-dirs impl cfg)))
((eq? impl 'loko)
(car (get-install-dirs impl cfg)))
((eq? impl 'meevax)
(car (get-install-dirs impl cfg)))
((eq? impl 'mit-scheme)
(car (get-install-dirs impl cfg)))
((eq? impl 'mosh)
Expand Down
4 changes: 4 additions & 0 deletions lib/chibi/snow/utils.scm
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
(display "(display (features))")))
(process->sexp
`(loko -std=r7rs --program ,tmp-path))))))
(meevax "meevax" (meevax --version) #f
,(delay
(process->sexp
'(meevax -e "(import (scheme base) (scheme write)) (write (features))"))))
(mit-scheme "mit-scheme" (mit-scheme --version) #f
,(delay
(process->sexp
Expand Down
Loading