例如:在 windows 环境编译 linux 可以执行文件或者在 linux 环境编译 windows 可执行文件
windows 环境编译 linux
设置参数:
export CGO_ENABLED=0
export GOOS=linux
export GOARCH=amd64
我是在 windows 环境使用 git 设置的参数,如果使用 cmd 命令行需要把 export 替换为 SET
main.exemain
linux 环境编译 windows
设置参数:
export CGO_ENABLED=0
export GOOS=windows
export GOARCH=amd64
linux 下我没有截图,同样是执行上面命令设置参数即可。