There will one day have a version of "Go" that can compile program for PPC?

All is in the topic !

GOARCH=ppc64 and GOARCH=ppc64le are documented as target architectures and should work for cross-compiling since Go 1.5, according to this blog post.

It should even be possible to compile Go itself for Linux on PPC from source.

ok for the 64bit.
but, will it be ok for 32bit system ?

Nope, 64bit only. Gccgo will be your best choice. I have no experience with building go programs on ppc with gccgo.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.