Rustaceans at the border
Rustaceans at the border
Posted Apr 14, 2022 22:33 UTC (Thu) by ssokolow (guest, #94568)In reply to: Rustaceans at the border by rvolgers
Parent article: Rustaceans at the border
sometimes it's literally just a matter of enabling the "no_std" feature flag, and you can use a bog-standard Rust library (with a somewhat more limited API, of course).
Rust feature flags are additive, so the convention is to declare an on-by-default feature flag named std which toggles the no_std attribute.
(no_std being equivalent to GCC's -nostdlib.)
