mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
2432c0d283
It is too risky to rely on the compiler to not insert any operations using the stack. Having a stack-setting call in Rust using the cortex-a crate as the first action in a Rust-only _start() function does not work if you're subsequently using the stack, because the compiler often inserts the operations to make room on the stack to prepare a function call BEFORE the call to set the stack, which crashes the boot process. Hence, keep on using a small piece of assembly boot code throughout.
20 lines
435 B
TOML
20 lines
435 B
TOML
[package]
|
|
name = "kernel"
|
|
version = "0.1.0"
|
|
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[features]
|
|
default = []
|
|
bsp_rpi3 = []
|
|
bsp_rpi4 = []
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
## Dependencies
|
|
##--------------------------------------------------------------------------------------------------
|
|
|
|
[dependencies]
|