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
Compiling this library on a 64-bit ARM target fails. The compiler returns this error:
error[E0308]: mismatched types
--> src/ds/identify/controller.rs:133:37
|
133 | const _SIZE_CHECKER:[u8;0x1000] = [0; std::mem::size_of::<IdentifyControllerDataStructure>()];
| ------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected an array with a fixed size of 4096 elements, found one with 4112 elements
| |
| help: consider specifying the actual array length: `4112`
This can be tested by cloning the repo and compiling it on a 64-bit ARM machine. This was tested with an ARM-based M1 Mac (Apple Darwin) and a Raspberry Pi 4 (Linux). It works fine on an x86_64 server, but does not compile on aarch64.
The text was updated successfully, but these errors were encountered:
Compiling this library on a 64-bit ARM target fails. The compiler returns this error:
This can be tested by cloning the repo and compiling it on a 64-bit ARM machine. This was tested with an ARM-based M1 Mac (Apple Darwin) and a Raspberry Pi 4 (Linux). It works fine on an
x86_64
server, but does not compile onaarch64
.The text was updated successfully, but these errors were encountered: