-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix SRFI 231 install #919
Fix SRFI 231 install #919
Conversation
Makefile: When installing chibi, make installation directory and install files for SRFI 231. When uninstalling chibi, remove installation directory and files for SRFI 231. lib/srfi/231/transforms.scm: Move definition of vector-iota from here to ... lib/srfi/231/base.scm: Here. lib/srfi/231/base.sld: Export vector-iota to use in both base.scm and transforms.scm.
Thanks! |
How does one run |
I actually have a script locally where |
Am I supposed to run it in some special directory? I get
I tried once in a random directory, once in the source directory, and once in the install directory. |
It works for me in the default install directory. You can view the current search path with:
and add to the search path with -I:
For example, from the source directory without even installing you can run:
I just added SRFI 231 to the lib test suite so running Also see the man page which describes the CHIBI_MODULE_PATH and CHIBI_IGNORE_SYSTEM_PATH env vars used in the Makefile. |
Makefile:
When installing chibi, make installation directory and install files for SRFI 231. When uninstalling chibi, remove installation directory and files for SRFI 231.
lib/srfi/231/transforms.scm:
Move definition of vector-iota from here to ...
lib/srfi/231/base.scm:
Here.
lib/srfi/231/base.sld:
Export vector-iota to use in both base.scm and transforms.scm.