mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
14 lines
455 B
TOML
14 lines
455 B
TOML
|
[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",
|
||
|
]
|
||
|
|
||
|
[build]
|
||
|
target = "thumbv7m-none-eabi"
|