-
Notifications
You must be signed in to change notification settings - Fork 153
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
Add basic support for mips64/powerpc/powerpc64/riscv64 #303
Conversation
I also went ahead and added |
S390x, | ||
Wasm32, | ||
PowerPc, | ||
PowerPc64, | ||
Riscv64, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add riscv32 too?
Would |
I originally tried that actually but it panics in too many locations during object file writing, so I wasn't able to use it. (assuming you mean the |
We would have to add a |
Ah I see! I wasn't aware of I tested out with object files that have |
I didn't find anything else that uses I think this is good to merge if you can address bjorn3's comments. |
Sure thing, done now! |
Let me know if you need a release for this any time soon. |
Ah yeah if you're up for it that'd be great, this'll be needed to land the rustc pr |
Ok, this technically a breaking change. We already require rust 1.42 so I'll add in some non_exhaustive for future changes. |
0.25.0 is published. |
Thanks! 👍 |
Add basic support for mips64/powerpc/powerpc64/riscv64
Added for rust-lang/rust#84449