-
Notifications
You must be signed in to change notification settings - Fork 16
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
FASL Libraries #53
base: main
Are you sure you want to change the base?
FASL Libraries #53
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where'd incbin.h come from? Does it have a license?
Is this ready?
"Return a list of all the required systems for SYSTEM topologically | ||
sorted by load order." | ||
(with-recursive-compile-bundle-op | ||
(asdf:required-components system |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: document this
@@ -1,5 +1,7 @@ | |||
;;;; package.lisp | |||
|
|||
(require :sb-sprof) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: depends-on this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before merging this pr should include an end-to-end test involving python to lisp calls and multiple dlls.
@@ -0,0 +1,82 @@ | |||
(in-package #:sbcl-librarian) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If possible this file should define a custom asdf operation instead of monkey patching an existing one.
TODO WIP