You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#linux上编译Win和mac64位可执行程序# linux
go build filename
# win
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build filename
#mac
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build main.go