pico-test/.cargo/config.toml
2023-01-15 22:58:30 +01:00

14 lines
314 B
TOML

[target.thumbv6m-none-eabi]
runner = "elf2uf2-rs -d"
rustflags = [
"-C", "linker=flip-link",
"-C", "link-arg=-Tlink.x",
# Code-size optimizations.
# "-Z", "trap-unreachable=no", # nightly only
"-C", "inline-threshold=5",
"-C", "no-vectorize-loops",
]
[build]
target = "thumbv6m-none-eabi"