Golang 在 Mac、Linux、Windows 下交叉编译

Golang在跨平台方面做的非常不错,支持平台之间的交叉编译,可以在一个平台上生成另一个平台的可执行程序,非常好用,下面不同平台的交叉编译命令:

1. Windows系统

1.1)Windows 下编译 Linux 64位系统的可执行程序
SET CGO_ENABLED=0
SET GOOS=linux
SET GOARCH=amd64
go build -o mainExecutor main.go
1.2)Windows 下编译 macOS 64位系统的可执行程序
SET CGO_ENABLED=0
SET GOOS=darwin
SET GOARCH=amd64
go build -o mainExecutor main.go

2. macOS系统

2.1)macOS下编译Linux 64位系统的可执行程序

CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o mainExecutor main.go

2.2)macOS下编译Windows 64位系统的可执行程序

CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o mainExecutor main.go

3. Linux系统

3.1)Linux下编译Windows 64位系统的可执行程序

CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o mainExecutor main.go

3.1)Linux下编译macOS 64位系统的可执行程序

CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o mainExecutor main.go

以上命令中的GOOSGOARCHCGO-o四个参数的含义如下:

  1. GOOS:目标平台的操作系统(darwin、freebsd、linux、windows)
  2. GOARCH:目标平台的体系架构(386、amd64、arm)
  3. CGO:交叉编译不支持 CGO 所以要禁用它
  4. -o:指定输出的可执行文件名称

参考文章:https://blog.csdn.net/panshiqu/article/details/53788067

你可能感兴趣的:(Golang 在 Mac、Linux、Windows 下交叉编译)