From ecec3c96e15446db6ba181356e2e96b205494d43 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Mon, 10 Aug 2020 00:01:17 +0300 Subject: [PATCH] Remove global build-std flags * Use those flags only in specific commands, otherwise building some tools from this directory will also fail (cargo picks these flags as global). --- .cargo/config.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 0a6e1fa..c424c85 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -8,6 +8,3 @@ rustflags = [ "-C", "target-cpu=cortex-a53", "-C", "embed-bitcode=yes", ] - -[unstable] -build-std = ["core", "compiler_builtins", "alloc"]