-
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: using -linkshared dies if compile not passed -p option #16632
Comments
r.Sym.Sect is nil in:
r.Sym is a type symbol ("type..NEZkhXSX") from libstd.so. Is noone else seeing this? |
Ping @crawshaw |
If I patch ldshlibsyms to fill out r.Sym.Addr and r.Sym.Sect.Vaddr then the test fails like this:
which suggests an offset into the some section in libstd.so is being compared against the location of a section in the executable? |
Oh phew, this is a test bogosity as well, it's because run.go does not pass -p to go tool compile. Some nasty hacks to do that make all the tests (apart from goprint) pass, so not a 1.7 blocker imo. |
compile -p is an option not a requirement. Whatever is broken here should work without it. |
No, I don't remember any more, would have to start investigating again. sent from my phone, please excuse brevity On 18 Oct 2016 23:51, "David Crawshaw" notifications@github.com wrote:
|
@mwhudson, is this still a problem? |
I just ran across the same problem. With tip this test still fails:
I can reproduce the same panic backtrace when building my own code in shared mode. |
I have gathered some additional information after playing with this on tip.
I understand why |
Answering my own question, the import path for package main is created in runtime.a by this line of code in go/src/cmd/compile/internal/gc/reflect.go Line 1541 in 04d6f98
|
I have patched cmd/link/internal/gc/main.go to add a definition for The problem started with commit c165988, when the type of
|
Removing release-blocker since this has been happening since Go 1.8. |
I have written a fix for this problem on 1.9, but tip now gives a different error with this test case:
|
run.go needs to be updated to run |
Actually my fix is incomplete. It only handles the specific case I care about (method offsets to methods defined in shared libraries), not the general case of section-relative offsets to types and strings in shared libraries. |
Obsoleted by #47788 |
Please answer these questions before submitting your issue. Thanks!
go version
)?tip
go env
)?Ubuntu 16.04.
./make.bash
go install -buildmode=shared std
cd ../test
go run run.go -linkshared method4.go
no output
The text was updated successfully, but these errors were encountered: