I've been looking on golang.org for a Windows compiler, but I can't seem to find it. I can only see Linux and OS X compilers. Does anyone know if Go programming can be done on Windows, or is it something that Google hasn't implemented yet?
feedback
|
|
There's now installers for Windows, see Go under Windows HelloWorld.go
Compile with
| |||||||||||||||||
feedback
|
|
Full disclosure: I am the lead developer on this project and owner of the company in question. Nevertheless, I think it's a direct answer to the question. I spent a long time pondering whether to jump in here, and even dug through the FAQs on Meta Stack Overflow to see what the general feeling on etiquette for this kind of answer was, and it seems to be OK, so here goes. My company is currently working on a Go compiler for Windows that, as far as I know, is the only 100% Windows-native (ie, it doesn't require Cygwin or MinGW to run) and also the first commercial Go compiler in the works. It is also currently the only full Go implementation that is actually written in Go, and has reached the milestone of being able to compile itself. erGo™ Beta 1 is now available to those who sign up for our beta test program. | |||||||||||||
feedback
|
|
It hasn't made it onto the Go Lang FAQ yet, but from the changelog:
| |||||||||||||||||||
feedback
|
|
| |||||||||
feedback
|
|
Despite the fact that Go is only two days old, this question has already become a FAQ on the Go mailinglist. (Unfortunately, it has not yet been added to the FAQ list on the website.) Basically, Go is done by a very small group of people, so they simply do not have the time nor the resources to do a Windows port. That very small group of people also happens to be the people who invented Unix, so that was kind of a natural first target. | |||||||||||||||
feedback
|
|
So if you, like me, are on Windows a lot of the time and want to do some Go programming right now, you can do it on a VM. I use VirtualBox running Ubuntu in seemless mode. I already had it set up because I like Linux better than Windows for a lot of things. Building and working with Go has been totally painless for me. I have a Bash open in a terminal to run my build and try my app. The source directory is a shared folder between Windows and Linux (a VirtualBox feature but I'm sure VMWare has the same thing). I edit my code in Komodo Edit on Windows and use Mercurial for the same source code on both OSes. | |||
feedback
|
|
Not yet. The authors of Go have very very deeply roots on non Windows operating systems ( Trivia: who of them created no less than the very UNIX operating system ) So, don't expect to have a Windows port from them any time soon. The language is open source, so it will be just a matter of time ( make it from 6 - 8 ehrm months ) for a Windows implementation will be available. | |||||||||||||
feedback
|
|
If you're looking for a Windows port of Go, like I was; This video over at YouTube was very helpful. Got me all setup and coding in about 15 minutes: Beginner's Guide - Using Go on Windows I hope this helps. | |||||
feedback
|
|
Various efforts to port Go to windows are underway. The most advance and that can already build and run some code is here: http://code.google.com/r/hectorchu-go-windows/ | |||
|
feedback
|
|
Although there is no Windows version at the moment, it can presumably be compiled using Cygwin on a Windows platform. | |||||
feedback
|
|
Installation of Go on windows is straight forward if you use the experimental x32 windows port . Documentation of the steps for Go installation on windows can found here You will probably also want the MinGW tools (bash, make, gcc, etc...): http://sourceforge.net/projects/mingw/files/ and the GTK+ files and tools (the "all-in-one bundle" includes pkg-config): http://www.gtk.org/download/win32.php | ||||
|
feedback
|
protected by Mat Aug 21 '11 at 16:32
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.