Unstable compilers
Unstable compilers
Posted Sep 25, 2024 17:56 UTC (Wed) by ballombe (subscriber, #9523)In reply to: Unstable compilers by admalledd
Parent article: Committing to Rust in the kernel
Because all rust compilers are guaranteed to be bug-free ?
Posted Sep 25, 2024 18:29 UTC (Wed)
by admalledd (subscriber, #95347)
[Link]
Rust in *most* cases will either halt compilation with an Error, and InternalCompilerError, or result in symbols that will fail at linking time instead of (used to be more) commonly "compiling" fine but crashing/failing at runtime or `insmod` time.
* Rust technically has no ABI, but you can expose/use one via various exports/macro things, commonly of course a "c-abi". This is mostly handled by `rust-bindgen` for automation with a dash of human control when required.
Unstable compilers
