-
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/go: dylib on macos with rpath fails to run with go run/test #36572
Comments
I have encountered the same exact problem. Downgrading to |
I can't reproduce this problem. A possible theory: your |
I take that back, I can reproduce. It only reproduces with the downloaded Go pkg, not the source. |
@cagedmantis Anything different about the release process for 1.13.6 from 1.13.5? |
@randall77 The only difference with the release process between 1.13.6 and 1.13.5 was the enabling of the Hardened Runtime. See #34986 for details. |
That would make a lot of sense then. From an article about the hardened runtime:
So hard to be sure, but I suspect that part of hardening is squashing any I think that although this is unfortunate, it's intentional and there's nothing we can do. Just wait until Apple starts forcing us to generate hardened binaries... |
@randall77 A member of the release team has suggested that we investigate some of the available entitlements (at some point) such as: Do you think these are entitlements that we should enable? |
That first one might possibly fix this issue. I don't think that's really the right way to go though. It's kind of an accident that the I think it is reasonable to ask that if you want to pass environment variables to a program written in Go, you have to build and run as separate steps. You might be able to use the
|
I think the bigger issue in terms of development is not wanting to have to build test binaries and run them instead of just running go test. It seems like it makes sense to have the go tooling pass through a flag such as this one. It was before so why not make it continue to do so. I’m not sure I see a practical benefit to limiting it for the sake of hardening a build tool. |
I'm not worried about hardening the build tool - that's just something that is being forced on us by Apple. But this issue demonstrates that it just isn't reliable to depend on the I suspect setting the first entitlement described above would fix this particular issue. And maybe we should do that, for backwards compatibility if nothing else. But I don't think the underlying problem is solved by doing that. The underlying problem is only solved by build/run separately, or using the |
Yep |
@bcmills I'm just double checking that this should not be a release blocker for go1.14rc1. |
Given that this issue appears to only affect dynamic libraries on macOS, has been present since Go 1.13.6, and has two workarounds (splitting the build step from the execution step, or using |
The I just upgraded to go 1.14.2 from 1.13.5, and it broke my ability to run tests in GoLand. GoLand uses This is the test setup invoked by GoLand: /usr/local/go/bin/go test -c -exec "env LD_LIBRARY_PATH=REDACTED" -o /private/var/folders/REDACTED_go github.com/REDACTED #gosetup
/usr/local/go/bin/go tool test2json -t /private/var/folders/REDACTED_go -test.v -test.run "^REDACTED$" -exec "env LD_LIBRARY_PATH=REDACTED" #gosetup
dyld: Library not loaded: @rpath/REDACTED.dylib
Referenced from: /private/var/folders/REDACTED_go
Reason: image not found @randall77 @cagedmantis Is there a workaround you are aware of for passing an |
@adamchel, you can run |
Instead of finding a way to pass CGO_LDFLAGS='-Wl,-rpath,/path/to/library' go test ./pkg where Edit: Unfortunately, this only works if the external linker is used… i.e., if |
Is there a way to catch the "lib not found" error in Go? and/or disable a certain cmd or pkg from being loaded if lib is not there? |
Seems like this might be a SIP bug: https://developer.apple.com/forums/thread/737920 |
What version of Go are you using (
go version
)?What version of macOS are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
When trying to run a simple go source file that links against an rpath based dylib, it fails to run with either
go run
orgo test
on 1.13.6. However, doinggo build
followed by running the executable works fine. It also works fine when I build go and test it from thego1.13.6
tag. It also works in go 1.13.5 but from looking at the commits between the two, I cannot find an issue. This leads me to believe that however the 1.13.6 was built on google servers introduced some kind of issue.A repro with a makefile is located at https://github.com/edaniels/go1136dylibissue.
What did you expect to see?
I expected to see a log output of
2
from:What did you see instead?
The text was updated successfully, but these errors were encountered: