no_std Rust Hello-World!
In this prost I present briefly how to run a minimal Hello-World! program for Linux, using #![no_std] Rust.
no_std Rust?
In case you are not aware of, the default environment when creating a Rust program uses the std Rust libraries and run time environment. Off course this involves a bunch of extra code and hardware-dependency which is not desired when developing for embedded systems.
Jump to the code: https://gitlab.com/olmanqj/rust-no-std-hello-world.
Previous post: Hello Universe 👋🌱