diff options
author | Brian Cully <bjc@kublai.com> | 2022-11-06 14:33:36 -0500 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2022-11-06 14:33:36 -0500 |
commit | a484a97111d0897ac6e0e291c4432a91ebdee416 (patch) | |
tree | ae6a203eafb2569b1ea3893f610b833cf48c0905 | |
parent | 06cf7bd3b829baf3e9c94026219ac28f541ece36 (diff) | |
download | luchie-a484a97111d0897ac6e0e291c4432a91ebdee416.tar.gz luchie-a484a97111d0897ac6e0e291c4432a91ebdee416.zip |
cargo: remove gdbinit from ‘run’ target
-rw-r--r-- | .cargo/config.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 033305c..4339ec3 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -2,7 +2,7 @@ target = "thumbv7em-none-eabihf" [target.thumbv7em-none-eabihf] -runner = "arm-none-eabi-gdb -x gdbinit" +runner = "arm-none-eabi-gdb" rustflags = [ "-C", "link-arg=-Tlink.x", ] |