justinethier/cyclone

installing on cyclone with brew doesn't work properly

bentxt opened this issue · 3 comments

when installing cyclone with brew, the cyclone compiler doesn't work properly. When importing the most basic libraries for a simple "hello world", there are problems with the library system:

$ cat hello.ss
(import (scheme base)
        (scheme write))

(write "hello")
$ cyclone hello.ss

Error: Unable to open file:
"/usr/local/share/cyclone/scheme/cyclone/common.sld"

Under this directory "/usr/local/share/cyclone/scheme/cyclone" there are only .so files the .sld files live under brews installation directory of /usr/local/Cellar/cyclone. Prepending the correct path with "-I" doesn't help.

Thanks for the report @bentxt - let me take a closer look at this.

OK, this should be working much better now.

Can you please try brew again when you have a moment?

yes it does work!

thanks a lot!