goland在windows 生成linux 可以执行的文件
goland打包linux可执行程序
选了output directory后默认打包win exe;
打包linux程序主要是配置环境参数:GOARCH=amd64;GOOS=linux
在goland上设置如下参数:
单独打包配置 ,以此执行
set CGO_ENABLED=0 set GOOS=linux set GOARCH=amd64
linux 下编译 window
CGO_ENABLED=0 GOOS=windows GOARCH=amd64