-
Notifications
You must be signed in to change notification settings - Fork 105
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
Failed to build the Rust Compiler on Apple M1 #1739
Comments
Hi @arttet , can you point us to the source code you're trying to build? A repository and a commit ID would be ideal so we can reproduce this. |
Okay I think what's happening is actually that this error:
...means that zerocopy-derive isn't usable from zerocopy. That, in turn, means that this Lines 279 to 281 in 7c8358e
As a consequence, those traits are not implemented for any of the types in the Lines 287 to 296 in 7c8358e
Zerocopy supports using zerocopy-derive optionally. That means that we have to be able to implement our traits for our own internal types without support from zerocopy-derive if it's disabled. We use In other words, when the derive feature is enabled, TL;DR: The issue is actually the "invalid metadata files for |
I'm gonna close this since it seems like it's not actually a zerocopy issue, but feel free to reopen or file another issue if you encounter anything else! |
the trait `FromZeroes` is not implemented for `byteorder::U16`
How to reproduce
How to build the Rust Compiler
The text was updated successfully, but these errors were encountered: