在 Mac、Linux、Windows 下Go交叉编译
2021-01-25 21:14
标签:oar windows mac lan win ble int enable bsd Golang 支持交叉编译,在一个平台上生成另一个平台的可执行程序,最近使用了一下,非常好用,这里备忘一下。 Mac 下编译 Linux 和 Windows 64位可执行程序 Linux 下编译 Mac 和 Windows 64位可执行程序 Windows 下编译 Mac 和 Linux 64位可执行程序 GOOS:目标平台的操作系统(darwin、freebsd、linux、windows) 上面的命令编译 64 位可执行程序,你当然应该也会使用 386 编译 32 位可执行程序 在 Mac、Linux、Windows 下Go交叉编译 标签:oar windows mac lan win ble int enable bsd 原文地址:https://www.cnblogs.com/zsy/p/12008141.html1 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build main.go
2 CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go
1 CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build main.go
2 CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go
1 SET CGO_ENABLED=0
2 SET GOOS=darwin
3 SET GOARCH=amd64
4 go build main.go
5
6 SET CGO_ENABLED=0
7 SET GOOS=linux
8 SET GOARCH=amd64
9 go build main.go
GOARCH:目标平台的体系架构(386、amd64、arm)
交叉编译不支持 CGO 所以要禁用它
很多博客都提到要先增加对其它平台的支持,但是我跳过那一步,上面所列的命令也都能成功,且得到我想要的结果,可见那一步应该是非必须的,或是我所使用的 Go 版本已默认支持所有平台。
文章标题:在 Mac、Linux、Windows 下Go交叉编译
文章链接:http://soscw.com/index.php/essay/46973.html