]> Cypherpunks repositories - gostls13.git/commit
cmd/link: fix confusing error on unresolved symbol
authorAustin Clements <austin@google.com>
Mon, 28 Jan 2019 02:03:32 +0000 (21:03 -0500)
committerAustin Clements <austin@google.com>
Tue, 29 Jan 2019 02:01:16 +0000 (02:01 +0000)
commit66065c3115861c73b8804037a6d9d5986ffa9913
tree9d72f5bf8361eb2548e03aba58c5f9737a5f2695
parentc00595cec55526f30b84903d9472d7f63f9c447d
cmd/link: fix confusing error on unresolved symbol

Currently, if an assembly file includes a static reference to an
undefined symbol, and another package also has an undefined reference
to that symbol, the linker can report an error like:

  x: relocation target zero not defined for ABI0 (but is defined for ABI0)

Since the symbol is referenced in another package, the code in
ErrorUnresolved that looks for alternative ABI symbols finds that
symbol in the symbol table, but doesn't check that it's actually
defined, which is where the "but is defined for ABI0" comes from. The
"not defined for ABI0" is because ErrorUnresolved failed to turn the
static symbol's version back into an ABI, and it happened to print the
zero value for an ABI.

This CL fixes both of these problems. It explicitly maps the
relocation version back to an ABI and detects if it can't be mapped
back (e.g., because it's a static reference). Then, if it finds a
symbol with a different ABI in the symbol table, it checks to make
sure it's a definition, and not simply an unresolved reference.

Fixes #29852.

Change-Id: Ice45cc41c1907919ce5750f74588e8047eaa888c
Reviewed-on: https://go-review.googlesource.com/c/159518
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/cmd/link/internal/ld/link.go
src/cmd/link/internal/sym/symbol.go
src/cmd/link/link_test.go