-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
Error in compilation - simd v0.1.0 #12
Comments
It looks like you're using an old compiler version, what does This crate needs a relatively recent nightly (in last month or so). |
This error appeared in version 1.3
|
What platform are you on? It looks like it might be a 32-bit x86 one, in which case SSE2 isn't automatically supported and there's (unfortunately) no easy way to enable it. One way I know of and use is to have a shell script like #!/bin/bassh
rustc -C target-feature=+sse2 "$@" and then invoke cargo like (BTW, if you put ``` on the line before and after your error messages they will be formatted much better on github.) |
My platform : 32-bit x86 (debian 8). |
I tried to run this library and i got an error compilation :
please help :)
The text was updated successfully, but these errors were encountered: