You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mwhudson@narsil:go-test-cases$ cat trivial.gopackage mainfunc main() {}mwhudson@narsil:go-test-cases$ go build trivial.gomwhudson@narsil:go-test-cases$ nm trivial | grep -F runtime.main.f0000000000470e90 R runtime.main.f0000000000470e98 R runtime.main.f
This is because the linker normalizes middle dots to periods. The source of the two symbols:
The runtime package defines a variable called runtime·main·f (in asm_$GOARCH.s)
As with all functions, the compiler creates a symbol called "".main·f to support indirect calls to runtime.main, which is read by the linker as runtime.main·f
This doesn't really cause problems today because the collision happens so late in the writing process, when you're executing an elf binary nothing really cares about the symbol names. It's a problem when you want to do dynamic linking stuff though, because the symbol names start mattering again.
It feels like these two symbols are actually meant to be the same, but I don't know how to make that happen. The simplest fix would be to make the names different enough to not collide in the symbol table.
The text was updated successfully, but these errors were encountered:
runtime·main·f is normalized by the linker to runtime.main.f, as is
the compiler-generated symbol runtime.main·f. Change the former to
runtime·mainPC instead.
Fixes issue golang#9934
Change-Id: I656a6fa6422d45385fa2cc55bd036c6affa1abfe
runtime·main·f is normalized by the linker to runtime.main.f, as is
the compiler-generated symbol runtime.main·f. Change the former to
runtime·mainPC instead.
Fixes issue #9934
Change-Id: I656a6fa6422d45385fa2cc55bd036c6affa1abfe
Reviewed-on: https://go-review.googlesource.com/8234
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
On Linux:
This is because the linker normalizes middle dots to periods. The source of the two symbols:
This doesn't really cause problems today because the collision happens so late in the writing process, when you're executing an elf binary nothing really cares about the symbol names. It's a problem when you want to do dynamic linking stuff though, because the symbol names start mattering again.
It feels like these two symbols are actually meant to be the same, but I don't know how to make that happen. The simplest fix would be to make the names different enough to not collide in the symbol table.
The text was updated successfully, but these errors were encountered: