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
Pointers are different lengths depending on whether memory addresses are 64 or 32-bits long. This will cause the library to fail on non-64 bit architectures, as the sizes of structs will change. To get around this, pointers should be stored as a u64, and then cast into the correct pointer type.
The text was updated successfully, but these errors were encountered:
The two possible ways I can see run into either ziglang/zig#9512 or ziglang/zig#4562, so I'm putting this on hold for now, until either way becomes viable.
Pointers are different lengths depending on whether memory addresses are 64 or 32-bits long. This will cause the library to fail on non-64 bit architectures, as the sizes of structs will change. To get around this, pointers should be stored as a
u64
, and then cast into the correct pointer type.The text was updated successfully, but these errors were encountered: