-
Notifications
You must be signed in to change notification settings - Fork 18k
cmd/link: ErrorUnresolved provides misleading information #33979
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://golang.org/cl/192597 mentions this issue: |
/cc @cherrymui @aclements |
Change https://golang.org/cl/213417 mentions this issue: |
Re-opened by revert CL 213417 |
…bols" This reverts commit 8adc1e0. Reason for revert: The test added in this commit fails on several builders. Fixes #36389. Re-opens #33979. Change-Id: I31191098c36af00f7688749b3376686673b3ac68 Reviewed-on: https://go-review.googlesource.com/c/go/+/213417 Run-TryBot: Austin Clements <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Alberto Donizetti <[email protected]>
See #36389 for some discussion of the issue that resulted in a revert. The fix itself is almost certainly fine; it's just a problem with the test that was added. |
Change https://golang.org/cl/212764 mentions this issue: |
Change https://golang.org/cl/220917 mentions this issue: |
Under OpenBSD -current with clang,
cgo_test
currently fails to build with:The underlying cause is an unrelated issue that is resulting in
libcompiler_rt.a
not being found. However, ErrorUnresolved should not be reportingrelocation target X not defined for ABI0 (but is defined for ABI0)
- this is caused by the code searching the same ABI and finding a matchingSXREF
symbol, which is the same symbol that it is trying to resolve in the first place.This appears to be a variant of issue #29852.
The text was updated successfully, but these errors were encountered: