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
I am generating the bindings for Hwloc_jll, and I encountered a few edge cases that I thought you might like to know about -- all of these have straightforward workarounds, so this isn't urgent here.
I am generating the bindings for Hwloc_jll, and I encountered a few edge cases that I thought you might like to know about -- all of these have straightforward workarounds, so this isn't urgent here.
hwloc.h
usesINT_MAX
:requiring the inclusion of something like:
hwloc.h
defines:which
Clang.jl
translated to:I replaced this line with:
instead.
Clang.jl
also generated lines like:However the constants on the RHS are defined as integers, eg:
and so on. A quick fix was to replace
||
with|
.The text was updated successfully, but these errors were encountered: