Hi
Have anyone used Rust base crypto library on nRF52-DK dev board?
I've tried to use ring in my Rust project and set target to "thumbv7em-none-eabi", but I got an error below which makes me question if Cortex-M4 is supported by it?
Error: attempt to use an ARM instruction on a Thumb-only processor -- `vld1.64 {q9},[r1]'
Then I tried to use rust-crypto crate and got another error.
error[E0463]: can't find crate for `std`
|
= note: the `thumbv7em-none-eabi` target may not be installed
However, I can build my project with target set to thumbv7em-none-eabi without problem. Just curious if anyone had this problem before?
Thanks
Jack