-
Notifications
You must be signed in to change notification settings - Fork 18k
debug/elf: add (*File).DynValue #56892
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
Comments
Change https://go.dev/cl/452617 mentions this issue: |
what does the proposed API change look like? |
From the CL, it appears that the proposal is // DynValue returns the values listed for the given tag in the file's dynamic
// section.
func (f *File) DynValue(tag DynTag) ([]uint64, error) |
Right, thank you. I missed the message from Nov 22nd. |
This proposal has been added to the active column of the proposals project |
This seems completely reasonable and I don't see any objections. |
Based on the discussion above, this proposal seems like a likely accept. |
No change in consensus, so accepted. 🎉 |
Change https://go.dev/cl/499616 mentions this issue: |
For #55107 For #56887 For #56892 Change-Id: Ibcca34c931ed3595d877c4573bba221dec66bb5a Reviewed-on: https://go-review.googlesource.com/c/go/+/499616 Reviewed-by: Eli Bendersky <[email protected]> TryBot-Bypass: Ian Lance Taylor <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]>
DynString currently offers functionality to retrieve only string-valued
.dynamic
entries (e.g. entries described here as "string table offset of..."). However, many of them do not correspond to entries in the string table, and it would be useful to be able to extract those values too (e.g. to determine whether a binary is a PIE via the DF_1_PIE flag).The text was updated successfully, but these errors were encountered: