-
Notifications
You must be signed in to change notification settings - Fork 696
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
--use-core bindings refers std #1015
Comments
Nice catch! I expect the fix for this is really easy (just forgetting to look at the prefix and emitting |
This is working as expected, Worth pointing it out in the FAQ or something though, I guess. |
To clarify: The issue is that some types are present in |
Either that, or using the |
Closing per #1015 (comment), since as things stand |
If these types aren't in Also, I've asked about moving them to |
You should pass, e.g., Though usually you'd want |
The description of |
Well, there is not (or didn't use to be at least) any alternative for We provide an option to not use std types for those and use a crate or module of your choice. Maybe the description should include "when possible" or something. |
Input C/C++ Header
Bindgen Invocation
See bindgen-flags above
Actual Results
Expected Results
Despite that
--use-core
flag is providedlarge_array
field having a type which refersstd
.I expect that either error is printed stating that bindings couldn't be generated with
--use-core
or bindings which don't use std generated.The text was updated successfully, but these errors were encountered: