-
Notifications
You must be signed in to change notification settings - Fork 163
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
mach: Implement LC_BUILD_VERSION
#341
Conversation
pub const PLATFORM_IOSSIMULATOR: u32 = 7; | ||
pub const PLATFORM_TVOSSIMULATOR: u32 = 8; | ||
pub const PLATFORM_WATCHOSSIMULATOR: u32 = 9; | ||
pub const PLATFORM_DRIVERKIT: u32 = 10; |
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.
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.
cool, thank you!
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.
This is great, thanks for implementing this!
@@ -1610,9 +1657,8 @@ impl<'a> ctx::TryFromCtx<'a, Endian> for CommandVariant { | |||
let comm = bytes.pread_with::<LinkeditDataCommand>(0, le)?; | |||
Ok((DyldChainedFixups(comm), size)) | |||
} | |||
// TODO: LC_NOTE (NoteCommand) and LC_BUILD_VERSION (BuildVersionCommand) | |||
// are unimplemented. | |||
LC_NOTE | LC_BUILD_VERSION | _ => Ok((Unimplemented(lc), size)), |
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 implementing this!
Just had the one question about method, otherwise lgtm |
thanks @messense ! do you need a point release for this soon or it's ok to wait a bit and collect some other PRs? |
It's ok to wait for a while. |
Hi @m4b, do you plan to release a new version soon? I'd like to use this for PyO3/maturin#1252, thanks! |
I dont need it. |
@messense published all non-breaking changes as 0.6.1, and new 0.6.1 branch along with git tag, thanks for your patience! |
Closes #255