-
Notifications
You must be signed in to change notification settings - Fork 156
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 support for csky arch(elf) #561
Conversation
All matches seem to be sorted by variant name. Could you insert the Csky variant at the right place to keep it sorted? |
src/common.rs
Outdated
@@ -29,6 +29,7 @@ pub enum Architecture { | |||
Wasm32, | |||
Wasm64, | |||
Xtensa, | |||
CSKY, |
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.
CSKY, | |
Csky, |
Rustc warns about non-CamelCase names.
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.
Thanks for the PR. Please also add support in these two places:
Line 154 in b237c5c
fn architecture(&self) -> Architecture { |
object/tests/round_trip/mod.rs
Line 231 in b237c5c
fn elf_any() { |
When will the next version be released |
I don't think there's been any breaking changes yet, so I can do a point release when needed. |
0.32.0 has been published. |
No description provided.