-
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
x/tools/gopls: -remote=auto doesn't use different addresses for different Go versions #50991
Comments
Probably also anything that affects module resolution ( Maybe it would be better to just hash the full output of |
@findleyr I might well be misremembering things and therefore holding this totally wrong, but aren't a number of those variables set via the editor and therefore managed per session in Not to say that all of those listed by you and @bcmills can be properly managed that way, rather just trying to recall something of our last conversation in this space. |
@myitcv you're thinking of #37830 -- gopls forwards I can sense that we might be on the verge of going down a rabbit hole as this is probably quite tricky to get 100% right :). Pragmatically, I would propose that for now we simply hash in either (once Go 1.18 is out, I really want to dismantle the lsprpc package entirely in favor of using @ianthehat's new jsonrpc2 library, I don't want to spend too much time on this now) |
Even just hashing the Go version would solve my immediate problem, so that seems fine with me. I'd still like to keep a tracking issue for the other build parameters, though - I regularly start vim+govim with different GOOS+GOARCH combinations to use go-to-definition and other features for different targets, like js/wasm or darwin. |
Given that gopls forwards GOOS and GOARCH, wouldn't that be honored by |
Oh, maybe that works already, I haven't double checked with an existing gopls daemon :) |
If I start
vim
withgovim
with thego
in PATH atgo version devel go1.18-9784ef8ab1 Wed Feb 2 16:21:08 2022 +0000 linux/amd64
, and then in another terminal I do the same but withgo
atgo version go1.17.6 linux/amd64
, both end up using the gopls with Go master (roughly 1.18beta2).I imagine
-remote=auto
should get smarter and realise that they should both use different gopls processes, because the Go packages being loaded may be different. In my case, one of the dependencies uses build tags likego1.17
andgo1.18
.@findleyr points me to https://cs.opensource.google/go/x/tools/+/master:internal/lsp/lsprpc/autostart_posix.go;l=40;drc=980829d8a1276d654bdf03f4a38f26eee797d0b1, which does include the buildid of the gopls binary itself, but not the version of Go.
I think we should include all build settings that can affect how the
go list
commands will behave, including:go version
go env
members such asGOOS
,GOARCH
,GOFLAGS
,CGO_ENABLED
, orCC
- but not others likeGOMOD
orGOCACHE
In fact, we could hash most of
go env
alone, given that we also have the version of Go itself asGOVERSION
. Hashing the entire thing is likely a bad idea, because some env vars shouldn't matter, and others aren't deterministic.The text was updated successfully, but these errors were encountered: