From e9ba024aaaba18bfc99fa2f1565de7a32a75fe01 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Mon, 10 Jun 2024 11:52:59 +0200 Subject: [PATCH] Remove redundant .cargo/config All options are already set by ../recipe.toml, and removing this file will make Cargo stop complaining about missing -Zbuild-std when for example compiling RMM for the host arch. --- .cargo/config | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .cargo/config diff --git a/.cargo/config b/.cargo/config deleted file mode 100644 index d51b0f5581..0000000000 --- a/.cargo/config +++ /dev/null @@ -1,8 +0,0 @@ -[build] -rustflags = [ - # Kernel should preserve floating-point registers - "-Csoft-float", -] - -[unstable] -build-std = ["core", "alloc", "compiler_builtins"]