From 663b74cb7c72562a9ad7f00a11d11a643274737c Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Mon, 12 Feb 2024 20:12:39 +0100 Subject: [PATCH] markfiles/cargo-targets.inc.mk: Drop legacy triple The legacy `riscv-none-embed` target triple is incorrect and the toolchain using it has long been obsolete. With our CI no longer using the obsolete toolchain, there is no need to handle that one anymore. --- makefiles/cargo-targets.inc.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/makefiles/cargo-targets.inc.mk b/makefiles/cargo-targets.inc.mk index 47fa12214e9e..de45a0c7c1f6 100644 --- a/makefiles/cargo-targets.inc.mk +++ b/makefiles/cargo-targets.inc.mk @@ -37,7 +37,6 @@ $(CARGO_COMPILE_COMMANDS): $(BUILDDEPS) -e 's/"riscv64-none-elf"/"riscv32"/g' \ -e 's/"riscv64-unknown-elf"/"riscv32"/g' \ -e 's/"riscv64-elf"/"riscv32"/g' \ - -e 's/"riscv-none-embed"/"riscv32"/g' \ | $(LAZYSPONGE) $@