-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fails to build for powerpc-unknown-linux-gnu #4880
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
Comments
For reference, what device are you trying to run this on? I thought PowerPC was a dead architecture. There's a single AtomicU64 you should be able to replace with a AtomicU32 here: Line 32 in 9059c65
I don't own a device to test this on so you'll need to provide more details on the error (with RUST_BACKTRACE if possible). It's probably SIMD instructions somewhere. |
@archseer powerpc IS a dead arch (except in some servers). I'm trying to run on very old hardware (older then me) an iMac G4 |
|
seems like you can use |
It seems like the solution by @gabydd should fix this so I am closing this issue. |
AtomicU64 is not defined on that arch.
I tried fixing it for myself by manually changing all of them to AtomicU32, but then i get illegal hardware instruction when i try to run it. I have no idea what I'm doing so I can't do much more then that
The text was updated successfully, but these errors were encountered: