cmd/go: cache is not aware of go build -trimpath flag #31896
Labels
FrozenDueToAge
GoCommand
cmd/go
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
release-blocker
Milestone
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Latest release does not yet include the feature, 7469564
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
go build
strings appname | grep /home/
, saw paths listedgo build -trimpath
strings appname | grep /home/
, still saw paths listedgo clean -cache
go build -trimpath
strings appname | grep /home/
, was empty as expectedWhat did you expect to see?
Empty results from grep even before cleaning the cache.
What did you see instead?
Build cache being ignorant about the presence of the
-trimpath
flag.The text was updated successfully, but these errors were encountered: