Merge pull request #628 from tgross35/libm-sse-fix

Disable libm on x86 without sse2
This commit is contained in:
Amanieu d'Antras 2024-06-22 09:52:32 +02:00 committed by GitHub
commit eaa2e17e9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,6 +47,9 @@ mod macros;
pub mod float;
pub mod int;
// Disabled on x86 without sse2 due to ABI issues
// <https://github.com/rust-lang/rust/issues/114479>
#[cfg(not(all(target_arch = "x86", not(target_feature = "sse2"))))]
pub mod math;
pub mod mem;