-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Description
What version of Go are you using (go version
)?
$ go version go version devel go1.17-3b770f2ccb Sun May 30 17:47:50 2021 +0000 linux/amd64
Does this issue reproduce with the latest release?
No
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/home/dominikh/.cache/go-build" GOENV="/home/dominikh/.config/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GOMODCACHE="/home/dominikh/prj/pkg/mod" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/dominikh/prj" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/home/dominikh/prj/go" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/home/dominikh/prj/go/pkg/tool/linux_amd64" GOVCS="" GOVERSION="devel go1.17-3b770f2ccb Sun May 30 17:47:50 2021 +0000" GCCGO="gccgo" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="/home/dominikh/prj/go/src/go.mod" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build1117114117=/tmp/go-build -gno-record-gcc-switches"
What did you do?
go list -json -compiled -test -deps runtime
What did you see?
The package with the ImportPath net [runtime.test]
has an entry in Imports
that reads runtime/cgo [runtime.test]
. However, there is no corresponding entry in ImportMap
.
It is my understanding that all non-identity imports should have a corresponding entry in ImportMap
, and go/packages
has matching logic for populating go/packages.Imports, a mapping from import paths to packages.
Note that this does not reproduce without the -compiled
flag. It also does not reproduce in Go 1.16.4, but in that version, there is no package runtime/cgo [runtime.test]
in the first place.
I am tentatively marking this as a release blocker because it is a regression and affects third party tools, but I may be overstepping here.
/cc @bcmills