|
|
|
|
|
by loosescrews
3595 days ago
|
|
It is probably the net package. The net package depends on cgo and libc for some DNS resolution. There is a pure Go implementation, but the cgo one is used if cgo is available. If you disable cgo as the other comments say, the pure Go implementation will be used instead. Alternatively, you can not include the net package. Search for systemConf().canUseCgo() https://github.com/golang/go/blob/master/src/net/lookup_unix... |
|