-
Notifications
You must be signed in to change notification settings - Fork 0
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
Generalize to multiple C libraries #294
Comments
I guess this is a generalization of having "stdlib prelude + header" to "stdlib prelude + some libraries + header". We'd need a way to configure that some (intermediate) types are from some 3rd party module. Then we can process various "libraries" separately. As I said in #75, trying to process into multiple modules would not work, not with |
Current proposal:
|
(This could be considered an instance of #75.)
Suppose we are generating bindings for multiple C libraries, and those libraries have inter-dependencies; perhaps library
A
exports some types that are used by libraryB
. Then we should be able to generate bindings for libraryB
in such a way that the bindings forA
andB
can be used together.The text was updated successfully, but these errors were encountered: