英文:
How to use Go on PowerPC
问题
有没有办法让Google Go生成Linux/PowerPC可执行文件?
**更新:**我猜这个公告可能会有所帮助。
英文:
Is there a way to get Google Go to generate Linux/PowerPC executables?
Update: I guess this announcement helps a bit.
答案1
得分: 3
自Go版本1.5起,支持ppc64和ppc64le。
英文:
Since Go version 1.5 ppc64 and ppc64le are supported.
答案2
得分: 2
提供的Go编译器不支持Linux/ppc平台,但是GCC前端工具gccgo可能可以。
英文:
The Go compilers provided do not target Linux/ppc, but the GCC frontend, gccgo, may be able to.
答案3
得分: 0
你还可以在Debian和Ubuntu上找到名为golang
的Go编译器包。
➜ apt cache madison golang
golang | 2:1.6.1+1ubuntu2 | http://www.las.ic.unicamp.br/pub/ubuntu-ports yakkety/main ppc64el Packages golang-defaults | 2:1.6.1+1ubuntu2 | http://www.las.ic.unicamp.br/pub/ubuntu-ports yakkety/main Sources
英文:
You can also find the go compiler package using the golang
name available both on Debian and Ubuntu.
➜ apt cache madison golang
golang | 2:1.6.1+1ubuntu2 | http://www.las.ic.unicamp.br/pub/ubuntu-ports yakkety/main ppc64el Packages
golang-defaults | 2:1.6.1+1ubuntu2 | http://www.las.ic.unicamp.br/pub/ubuntu-ports yakkety/main Sources
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论