From 9c3bbc2e50a5be9d5d3bf878c639b9c9fcbf9c3e Mon Sep 17 00:00:00 2001 From: Adam Greig Date: Thu, 16 Jul 2020 12:42:30 +0100 Subject: [PATCH] Always link pre-built asm, required for new cache management functions --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index eb0cd114..d53dea5c 100644 --- a/build.rs +++ b/build.rs @@ -6,7 +6,7 @@ fn main() { let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap()); let name = env::var("CARGO_PKG_NAME").unwrap(); - if target.starts_with("thumb") && env::var_os("CARGO_FEATURE_INLINE_ASM").is_none() { + if target.starts_with("thumb") { fs::copy( format!("bin/{}.a", target), out_dir.join(format!("lib{}.a", name)),