In the embedded world of microcontrollers/microprocessors/etc. running no_std type rust and C software all sorts of weird and wonderful architectures (and proprietary/customized/obscure/obsolete/etc. compilers) are used. Many more than just on the PC.
ABI compatibility and documentation is lackluster in this space.
Is it feasible to run this on something like the popular ARM Cortex M0+ CPU core? (in an emulator like qemu or in physical hardware).
I suspect the lack of std support probably makes it impossible, but I figured I should ask anyways
In the embedded world of microcontrollers/microprocessors/etc. running
no_stdtype rust and C software all sorts of weird and wonderful architectures (and proprietary/customized/obscure/obsolete/etc. compilers) are used. Many more than just on the PC.ABI compatibility and documentation is lackluster in this space.
Is it feasible to run this on something like the popular ARM Cortex M0+ CPU core? (in an emulator like qemu or in physical hardware).
I suspect the lack of
stdsupport probably makes it impossible, but I figured I should ask anyways