Closed chrismwendt closed 2 years ago
You can disable it with env CGO_ENABLED=0 lsif-go if necessary.
env CGO_ENABLED=0 lsif-go
Fixes https://github.com/sourcegraph/sourcegraph/issues/33285
Might fix https://github.com/sourcegraph/sourcegraph/pull/30307#issuecomment-1041917665. I was unable to repro the error, but I was able to determine that binding.go is now included in the output whereas before this change it wasn't.
binding.go
Might fix https://github.com/sourcegraph/lsif-go/issues/227 for the same reason.
I didn't notice any negative consequences of this change:
.c
import "C"
Could you elaborate on how this fixes https://github.com/sourcegraph/sourcegraph/issues/33285?
You can disable it with
env CGO_ENABLED=0 lsif-go
if necessary.Fixes https://github.com/sourcegraph/sourcegraph/issues/33285
Might fix https://github.com/sourcegraph/sourcegraph/pull/30307#issuecomment-1041917665. I was unable to repro the error, but I was able to determine that
binding.go
is now included in the output whereas before this change it wasn't.Might fix https://github.com/sourcegraph/lsif-go/issues/227 for the same reason.
I didn't notice any negative consequences of this change:
.c
files in Go packages withoutimport "C"