Merge pull request #628 from tgross35/libm-sse-fix
Disable libm on x86 without sse2
This commit is contained in:
commit
eaa2e17e9f
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue