From 3c428dcc51f5676163a4a9788e17649a61beb823 Mon Sep 17 00:00:00 2001 From: Emil Ivanichkov Date: Fri, 21 Oct 2022 17:36:14 +0300 Subject: [PATCH] sorry #2 --- cpufeatures/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpufeatures/src/lib.rs b/cpufeatures/src/lib.rs index e9e3c5c6..2ebd34f1 100644 --- a/cpufeatures/src/lib.rs +++ b/cpufeatures/src/lib.rs @@ -71,8 +71,8 @@ mod x86; #[cfg(miri)] mod miri; -#[cfg(not(any(target_arch = "aarch64", target_arch = "x86", target_arch = "x86_64")))] -# compile_error!("This crate works only on `aarch64`, `x86`, and `x86-64` targets."); +// #[cfg(not(any(target_arch = "aarch64", target_arch = "x86", target_arch = "x86_64")))] +// compile_error!("This crate works only on `aarch64`, `x86`, and `x86-64` targets."); /// Create module with CPU feature detection code. #[macro_export]