From 04da1eec3568c3fd0b13628d13cf2089994e9450 Mon Sep 17 00:00:00 2001 From: Samuel Freeman Date: Tue, 15 Oct 2024 21:40:48 +0800 Subject: [PATCH] add more support target --- .cargo/config.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 80fc334..008c3d7 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,4 +1,10 @@ -[target.thumbv7m-none-eabi] # used to run the qemu_test.rs example with QEMU runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable=on,target=native -kernel" rustflags = ["-C", "link-arg=-Tlink.x"] +targets = [ + "thumbv7em-none-eabi", + "thumbv7m-none-eabi", + "thumbv6m-none-eabi", + "thumbv7em-none-eabihf", + "thumbv8m.main-none-eabihf", +]