3420cbf744
Previously the cargo configurations of all of the example projects had `build-std = ["core"]`, which forces compilation of `core` as a code-size optimisation. However, this is strictly unnecessary and will currently break for users who do not use `rustup` directly (e.g. nix users).
19 lines
518 B
TOML
19 lines
518 B
TOML
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
# replace STM32F429ZITx with your chip as listed in `probe-run --list-chips`
|
|
runner = "probe-run --chip STM32F429ZITx"
|
|
|
|
rustflags = [
|
|
# LLD (shipped with the Rust toolchain) is used as the default linker
|
|
"-C", "link-arg=--nmagic",
|
|
"-C", "link-arg=-Tlink.x",
|
|
"-C", "link-arg=-Tdefmt.x",
|
|
|
|
# Code-size optimizations.
|
|
"-Z", "trap-unreachable=no",
|
|
"-C", "inline-threshold=5",
|
|
"-C", "no-vectorize-loops",
|
|
]
|
|
|
|
[build]
|
|
target = "thumbv7em-none-eabi"
|