|
|
|
|
|
by remexre
1896 days ago
|
|
WRT floating-point, worth noting for those who haven't read the patches: - Kernels generally don't want to use floating-point, because saving and restoring the floating-point registers is fairly expensive.
- Without some pretty aggressive hacking, it's not possible to remove floating-point support from Rust.
- What you /can/ do (and what these patches do) is replace all the floating-point builtins with kernel panics.
- This obviously sucks versus actually removing the floating-point, but this is an RFC. |
|