-
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: index out of range at cmd/link/internal/ld.decodetypeKind #62156
Comments
Bisect identifies ca858a4. |
Change https://go.dev/cl/521155 mentions this issue: |
Confirmed that reverting that CL fixes the gobgpd build. I'm fine with reverting and then rolling forward once the failure case is understood. |
This reverts commit CL 520611. Reason for revert: #62156. Change-Id: Iebd17bdfc00824de3d5011a74d071a41c4fa06f1 Reviewed-on: https://go-review.googlesource.com/c/go/+/521155 Auto-Submit: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
This reverts commit CL 520611. Reason for revert: golang#62156. Change-Id: Iebd17bdfc00824de3d5011a74d071a41c4fa06f1 Reviewed-on: https://go-review.googlesource.com/c/go/+/521155 Auto-Submit: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
The issue here is that DWARF generation can also produce references to runtime type descriptors, which need to be written out too. So that also needs to go into the work queue. Whee. |
Minimal repro:
|
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
no, tip only
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
What did you expect to see?
build succeeds
What did you see instead?
If disabling DWARF with -ldflags='-w' the link succeeds.
The text was updated successfully, but these errors were encountered: