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
Interesting. I'm not 100% sure but did some quick research and it seems only valid signed 8-bit characters should be used in Vec<c_char>. I guess x86, the code might be lenient and allow negative values for u8, but on ARM64 it seems using signed values might be required. We could change the code to use valid signed 8-bit characters by specifying the type as i8
let v:Vec<c_char> = vec![-61i8,0i8];
Would you be willing to try and confirm if this approach works?
When building
0.195.1
on aarch64 architecture the following issue happens:The text was updated successfully, but these errors were encountered: