From fbe605041bee8c1ef4a8e7ec111c2a028aef228b Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Sat, 27 May 2023 18:54:00 +0200 Subject: [PATCH] oops, avx2 is not as widely available as i thought --- .cargo/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 166ba1c..8ad770e 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -9,10 +9,10 @@ rustflags = ["-Ctarget-feature=+crt-static"] [target.i586-pc-windows-msvc] rustflags = ["-Ctarget-feature=+crt-static"] -# enable sse,sse2,sse3,avx,avx2,fma +# enable sse,sse2,avx [target.'cfg(target_arch = "x86_64")'] -rustflags = "-Ctarget-feature=+sse,+sse2,+sse3,+avx,+avx2,+fma" +rustflags = "-Ctarget-feature=+sse,+sse2,+avx" # use sparse crates.io protocol