Hacker News new | ask | show | jobs
by MStrehovsky 1263 days ago
The crosscompilation on Go to mac is pretty limited. That's why I wrote "need to reach dependencies beyond what libc offers". If you crosscompile Go from Linux to mac, you'll actually get a different binary than if you compile on mac natively (DNS resolution will use Go's home baked version instead of the one provided by the OS). CGo also doesn't work if you crosscompile.

It's a bunch of work to even get a hobbled version of crosscompilation to macOS running.

1 comments

Yeah the DNS resolution issue without cgo is quite a hassle.

Luckily this should be solved in 1.20

https://go-review.googlesource.com/c/go/+/446178/