Golang 交叉编译 window/linux 文件

    • gox - 一款简单的交叉编译工具

下载地址:https://github.com/mitchellh/gox

  • 使用 go get 命令安装: go get github.com/mitchellh/gox

Golang 交叉编译 window/linux 文件

  • 同 go build 一样, 用 gox 编译项目 〉
  • 只生成linux平台amd64的文件: gox -osarch="linux/amd64"

Golang 交叉编译 window/linux 文件

  • 只生成windows平台amd64文件: gox -osarch="windows/amd64"

Golang 交叉编译 window/linux 文件

  • 只生成mac平台下的文件: gox -os "darwin"

Golang 交叉编译 window/linux 文件

  • 直接将编译好的 exe 或 linux 二进制文件上传上去执行即可
上一篇:Golang 交叉编译跨平台的可执行程序 (Mac、Linux、Windows )


下一篇:hadoop2.6.0集群搭建