-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/link: unusable flag -D #28921
Comments
Thank you for filing this issue @Helflym! I'll kindly page @ianlancetaylor @thanm for help with this issue. |
This is an interesting case since it dates back to when the linker was added to the source repo in git revision 0cafb9e. So it's presumably from the Inferno linker. More to the point, you're right: the linker's |
Change https://golang.org/cl/151021 mentions this issue: |
I am happy to take this if its open and no one is working on it . We need to remove the |
As you can see from the comment above, a CL has already been posted for this. So yes, it is being already worked on. Please do feel free to take up any other issue which doesn't have a CL yet. No need to ask for permission :) |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
go1.10.4 => -R=0 doesn't trigger a panic, but data section isn't set at the given address.
go1.11.1 => Same as master
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I was trying to generate an ELF binary using -D flag. However, -D seems to be unusable.
If it's used alone, it's ignored because of flag -R being set by default to 0x1000.
If -R is disabled with -R=0, a panic is triggered.
Was -R flag aimed to act like "--section-alignment" flag for GNU ld ?
In this case, -R and -D should be able to be called together.
Otherwise, what's the aim of -R flag?
Looking at the code, data first address is always computed using *FlagRound:
https://github.com/golang/go/blob/master/src/cmd/link/internal/ld/data.go#L2039
Moreover, *FlagDataAddr is used nowhere in cmd/link.
Therefore, is -D a useless flag which aims to be dropped or should it be repaired ?
I've already made some changes to make -D working on aix/ppc64 so I can create a CL quite easily for others GOOS/GOARCH.
The text was updated successfully, but these errors were encountered: