-
Notifications
You must be signed in to change notification settings - Fork 12
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
Add Support for ASDF, Quicklisp #27
Comments
I don't think I know enough to attempt this, but I did find an embedding of ISLisp in Common Lisp ( https://github.com/ruricolist/core-lisp ). Perhaps this could be useful for Shen. |
I don't know too much about ASDF and QL but before we can do anything with them, some refactoring is needed in order to produce a source distribution of shen-cl as a library, a I did some work to do that on ecl-enhancements when trying to get ECL to work. |
I'd like to poke the stick on this. Anyone giving this some love? As it stands, this seems really awkward. I have sbcl now. Do I really need another sbcl binary just to have shen on top? |
Wanted to also indicate my support for this change. A quick skim of the If I understand correctly the Writing a separate interface function for actually defining/calling shen code in a CL file is a bit more work, but Coalton's approach of separate "toplevel" and "non-toplevel" macros with different capabilities could probably work here as well. |
As mentioned in #25 by @Drainful, we should look at adding support for ASDF and maybe Quicklisp.
The current design of the source code is only suited for building a binary. Many programs (perhaps most programs?) using Shen won't want to be built on a Shen foundation and would rather be build on a native CL foundation that hosts components built with Shen.
I also think having a library distribution that supports all major Common Lisp implementations would be better than the way it's set up now, where the Makefile is generating binaries for every platform. Having it in library form as
shen.lisp
and just a single SBCL prebuilt binary would make more sense.Ideally, one could add Shen to an existing CL project with a Quicklisp command.
The text was updated successfully, but these errors were encountered: