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
Cint is a flag that means clang failed to parse your source code. When parsing code with Clang.jl, one needs to treat it as a real clang compiler, so all of those compiler flags should be passed correctly.
int16_t and uint32_t are defined in stdint.h, so you should add #include <stdint.h> to your code.
With a default configuration this
gets translate to this
Looking into https://github.com/JuliaInterop/Clang.jl/blob/master/src/generator/definitions.jl I'd suppose that these integers would be well translated. (I couldn't find any option related to this too.)
The text was updated successfully, but these errors were encountered: