Accidentally introduced in 0b9ca84735.
This commit is contained in:
Philipp Oppermann
2020-01-22 12:42:19 +01:00
parent 0346ec3111
commit 7070bb608d

View File

@@ -507,7 +507,7 @@ cargo rustc -- -C link-args="/ENTRY:_start /SUBSYSTEM:console"
cargo rustc -- -C link-args="-e __start -static -nostartfiles" cargo rustc -- -C link-args="-e __start -static -nostartfiles"
``` ```
Note that this is just a minimal example of a freestanding Rust binary. This binary expects various things, for example that a stack is initialized when the `_start` function is called. **So it probably for any real use of such a binary, more steps are required**. Note that this is just a minimal example of a freestanding Rust binary. This binary expects various things, for example that a stack is initialized when the `_start` function is called. **So for any real use of such a binary, more steps are required**.
## What's next? ## What's next?