-
Notifications
You must be signed in to change notification settings - Fork 17.5k
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
debug/macho: parse relocations #21957
Comments
Change https://golang.org/cl/65150 mentions this issue: |
Hmm, I'm not sure that whether this change is conformance with Go1.0 compatibility rule. |
I think your change is fine - you are adding new macho.Reloc type and Relocs filed to existing macho.Section. I did something similar to debug/pe before. I just need to make sure your new additions are good to stay, because you won't be able to change them after go1.10 is released. Alex |
Thanks! I'll be careful. |
I want to debug some relocations. Current library doesn't parse relocations.
So, users have to parse relocations themselves. It would be nice to add these feature in the standard library. debug/pe already have same feature.
The text was updated successfully, but these errors were encountered: