58
Another Round Of Rust Compiler Improvements Merged For GCC 15.1
(www.phoronix.com)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
How do languages in GCC map to hardware? Could I, for instance, write in Rust and compile for GCC-MSP430, or a 68k architecture?
LLVM compiles C, C++, Rust, etc. into an intermediate language and then compiles that language into assembly for the target platform. I'm not sure if gcc uses an intermediate language or not. Either way, the compiler can compile any of its supported languages into any of its target platforms. For Rust, you will probably need to look into "no_std" for systems that don't have a typical libc setup.