文章目录
  1. 1. Mac 下编译 Linux 和 Windows 64位可执行程序
  2. 2. Linux 下编译 Mac 和 Windows 64位可执行程序
  3. 3. Windows 下编译 Mac 和 Linux 64位可执行程序

Mac 下编译 Linux 和 Windows 64位可执行程序

1
2
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build main.go
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go

Linux 下编译 Mac 和 Windows 64位可执行程序

1
2
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build main.go
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go

Windows 下编译 Mac 和 Linux 64位可执行程序

1
2
3
4
5
6
7
8
9
SET CGO_ENABLED=0
SET GOOS=darwin
SET GOARCH=amd64
go build main.go

SET CGO_ENABLED=0
SET GOOS=linux
SET GOARCH=amd64
go build main.go
文章目录
  1. 1. Mac 下编译 Linux 和 Windows 64位可执行程序
  2. 2. Linux 下编译 Mac 和 Windows 64位可执行程序
  3. 3. Windows 下编译 Mac 和 Linux 64位可执行程序