rp-hal-boards/.cargo/config
2021-07-31 18:52:50 +10:00

13 lines
299 B
Plaintext

[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",
]
runner = "elf2uf2-rs -d"