aboutsummaryrefslogtreecommitdiff
path: root/.cargo/config.toml
blob: d70faef4278e908b928c3631e1860513244383e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
[alias]
xtask = "run --package xtask --"

[target.thumbv6m-none-eabi]
runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable=on,target=native -kernel"

[target.thumbv7m-none-eabi]
runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable=on,target=native -kernel"

[target.'cfg(all(target_arch = "arm", target_os = "none"))']
rustflags = [
  "-C", "link-arg=-Tlink.x",
]