We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I trying to compile num-traits with
num-traits
[build] rustflags = ["-Ctarget-feature=-sse2"]
I get:
Compiling num-traits v0.2.15 error: src\lib.rs:386:0: in function _ZN39_$LT$f64$u20$as$u20$num_traits..Num$GT$14from_str_radix17h59b1ae50b18378abE void (ptr, ptr, i64, i32): SSE2 register return with SSE2 disable
The text was updated successfully, but these errors were encountered:
You can't turn off sse2 like that because std is pre-compiled with sse2. Look into using the i586 target(s) instead.
i586
Sorry, something went wrong.
That's not that I'm trying to disable sse2 specifically for num-traits....
So, sse2 required for num-traits? Does that means it can't be used with arm/mac? If so - that should be mentioned somewhere in the docs.
You can't turn off sse2 like that because std is pre-compiled with sse2
Oh I lost std word, first time I read that.
https://docs.rs/safe_arch/latest/safe_arch/#compile-time-cpu-target-features
Now I see that.
No branches or pull requests
When I trying to compile
num-traits
withI get:
The text was updated successfully, but these errors were encountered: