golang交叉编译上遇到的问题!

deyen · · 4861 次点击
jan-bar
想要拥有,必定付出。
你可以试试我这个项目 编译sqlite,用了CGO:https://github.com/jan-bar/xgo/blob/master/tests/sqlite/build.sh 编译go-lua,编译lua的C代码:https://github.com/jan-bar/xgo/blob/master/tests/go-lua/build.sh 在linux下启用CGO编译window可执行程序,我已经做好了一个docker,应该能省你不少功夫。
#14
更多评论
首先,amd64 linux 编译到 amd64 windows 的程序,命令应该是: ``` CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go ``` 其次,fyne.io/fyne 这个库应该用了 CGO,需要安装响应的 gcc,指定 gcc 才能编译,例如: ``` CGO_ENABLED=1 GOOS=windows GOARCH=amd64 CC=x86_64-xxx-gcc CGO_LDFLAGS="-static" go build main.go ```
#1
按照你的提示去做,出现以下代码。 ``` $ CGO_ENABLED=1 GOOS=windows GOARCH=amd64 CC=x86_64-xxx-gcc CGO_LDFLAGS="-static" go build main.go # runtime/cgo cgo: C compiler "x86_64-xxx-gcc" not found: exec: "x86_64-xxx-gcc": executable file not found in $PATH ``` (怎么我看网上有说法说cgo不支持交叉编译,所以CGO_ENABLED=0来着😂😂)
#2