We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c04eb9e + 9ba77d1 commit 7607343Copy full SHA for 7607343
src/lib.rs
@@ -47,6 +47,9 @@ mod macros;
47
pub mod float;
48
pub mod int;
49
50
+// Disabled on x86 without sse2 due to ABI issues
51
+// <https://github.com/rust-lang/rust/issues/114479>
52
+#[cfg(not(all(target_arch = "x86", not(target_feature = "sse2"))))]
53
pub mod math;
54
pub mod mem;
55
0 commit comments