Hacker News new | ask | show | jobs
by axaxs 2832 days ago
That's only half right. It does link to libc, but the default behavior on linux is to use Go unless some conditions are met.
1 comments

Use go for what? DNS resolution? The default behavior is to use the system DNS resolver. The Go resolver will be used if the system is resolver is not avaialble (e.g. if the binary is compiled as pure go) or if the net.Resolver has the PreferGo flag set (which is false by default).

https://github.com/golang/go/blob/541f9c0345d4ec52d9f4be5913...