From 040fffd667f8bdc089df828783aa0a76a06d4b5a Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Mon, 10 May 2021 17:15:41 +0200 Subject: [PATCH] Don't use -eabihf --- .vscode/settings.json | 4 ++-- embassy-stm32-examples/.cargo/config.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index dc200f79e..8a292c0be 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,8 +4,8 @@ "rust-analyzer.cargo.allFeatures": false, "rust-analyzer.checkOnSave.allFeatures": false, "rust-analyzer.checkOnSave.allTargets": false, - "rust-analyzer.cargo.target": "thumbv7em-none-eabihf", - "rust-analyzer.checkOnSave.target": "thumbv7em-none-eabihf", + "rust-analyzer.cargo.target": "thumbv7em-none-eabi", + "rust-analyzer.checkOnSave.target": "thumbv7em-none-eabi", "rust-analyzer.procMacro.enable": true, "rust-analyzer.cargo.loadOutDirsFromCheck": true, "files.watcherExclude": { diff --git a/embassy-stm32-examples/.cargo/config.toml b/embassy-stm32-examples/.cargo/config.toml index 7c1d4dfb6..3ccca879d 100644 --- a/embassy-stm32-examples/.cargo/config.toml +++ b/embassy-stm32-examples/.cargo/config.toml @@ -25,4 +25,4 @@ rustflags = [ ] [build] -target = "thumbv7em-none-eabihf" +target = "thumbv7em-none-eabi"