-
Notifications
You must be signed in to change notification settings - Fork 124
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
How can we get bindgen output with wrap_static_fns() ? #201
Comments
Not a rocket science, but would require some changes to Might also require a small change to All in all it would require a PR. Are you willing to work on that? |
@ivmarkov yes ill take a stab at it |
PR here #202 |
We now use bindgen 0.69 both in embuild and this crate. I think they made additional changes how to handle inline functions across FFI layer, but it seams that it would still need a lot of handholding on our part. |
So for example I want to include esp32/incude/hal/i2s_ll.h and all the static inlines inside it, but by default all the static inlines are not generated in the bindings. How can I include wrap_static_fns() so that I get the inline utility APIs inside i2s_ll.h ? From my project's build.rs can I pass in something to the embuild flags or anything of that sort to achieve this ?
The text was updated successfully, but these errors were encountered: