rp-hal-boards/.cargo/config

12 lines
274 B
Plaintext
Raw Normal View History

[build]
# Instruction set of Cortex-M0+
target = "thumbv6m-none-eabi"
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
rustflags = [
"-C", "link-arg=--nmagic",
"-C", "link-arg=-Tlink.x",
"-C", "inline-threshold=5",
"-C", "no-vectorize-loops",
]