go编译不同平台

1
2
3
GOOS=darwin GOARCH=amd64 go build main.go
GOOS=windows GOARCH=amd64 go build main.go
GOOS=linux GOARCH=amd64 go build main.go