diff options
Diffstat (limited to '.cargo/config.toml')
-rw-r--r-- | .cargo/config.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 4339ec3..68eea01 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,8 +1,11 @@ +[alias] +t = "test --target x86_64-unknown-linux-gnu" + [build] target = "thumbv7em-none-eabihf" [target.thumbv7em-none-eabihf] -runner = "arm-none-eabi-gdb" +runner = "arm-none-eabi-gdb -i=mi" rustflags = [ "-C", "link-arg=-Tlink.x", ] |