We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
__restrict not defined
While trying to generate C-bindings for Hwloc_jll I get the following error:
ERROR: LoadError: UndefVarError: __restrict not defined
Looking at the generated code, the error is being thrown by:
const __hwloc_restrict = __restrict
Should this be ignored by the code generator (it looks like it might be getting confused by restrict, __restrict, and __restrict__)?
restrict
__restrict
__restrict__
The text was updated successfully, but these errors were encountered:
Basically, if you don't need that symbol(__hwloc_restrict), you could workaround this by adding it in the output_ignorelist.
__hwloc_restrict
output_ignorelist
Yes. I'm currently expanding this list case by case.
Sorry, something went wrong.
Ignore __restrict
e3a60ee
Fixed by e3a60ee .
Brilliant ! Thanks @Gnimuc
No branches or pull requests
While trying to generate C-bindings for Hwloc_jll I get the following error:
Looking at the generated code, the error is being thrown by:
Should this be ignored by the code generator (it looks like it might be getting confused by
restrict
,__restrict
, and__restrict__
)?The text was updated successfully, but these errors were encountered: