diff --git a/src/lib.rs b/src/lib.rs index 40564178a..0d207a914 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,6 +47,9 @@ mod macros; pub mod float; pub mod int; +// Disabled on x86 without sse2 due to ABI issues +// +#[cfg(not(all(target_arch = "x86", not(target_feature = "sse2"))))] pub mod math; pub mod mem;