From 38427365f6f2ce834b05713493c03055163e7325 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Thu, 8 Feb 2024 10:55:44 -0800 Subject: [PATCH] Remove build-time check for stdsimd feature (0.7 branch) --- build.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/build.rs b/build.rs index 8be4964..118c250 100644 --- a/build.rs +++ b/build.rs @@ -7,7 +7,6 @@ fn main() { if let Some(channel) = version_check::Channel::read() { if channel.supports_features() { println!("cargo:rustc-cfg=feature=\"specialize\""); - println!("cargo:rustc-cfg=feature=\"stdsimd\""); } } let os = env::var("CARGO_CFG_TARGET_OS").expect("CARGO_CFG_TARGET_OS was not set");