You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are you referring to using convert_header's do-lambda function as a filter for what gets converted? That was more of a crutch to avoid problematic code. So there is no way to filter out individual items, but the new framework should produce nearly ideal results and it does support header file granularity of filtering (if you explicitly include the header, it will be converted, otherwise it will not). So with your example, usage might look something like this:
The i option for the C string macro allows conversion of the explicitly included header files as well as any implicitly included header files that are found in the same directory structure as the explicitly included files. If you want to drop the i option and explicitly include every header file, that could be done as well.
The j option creates Julia names for converted items, the J option can be used instead if annotated types (with struct_, union_, or enum_ prefixes) are needed to avoid name collisions.
Hey, i used CBindingGen for my project and now want migrate away from it. I ran the following buildscript:
How would i replace the convert_headers loop, since that's not part of CBinding?
Thank you?
The text was updated successfully, but these errors were encountered: