So why did we decide to do it that way? A few things pushed us over the edge. First of all, we knew it would be a really important thing for the Go language. It’s a bold statement: this language is strong enough to write a full fledged compiler in. Since no compiler existed for Windows, we knew that the only way a compiler for Go could get on Windows is if it compiled itself, so it would make a bold statement about erGo™ as well. Second, it would demonstrate our own faith in the language. If we believe the language is that good (and we do), it would be much easier to convince users of that. Finally, it would give us a very large code base of a “real” project to use as a test case for the compiler. erGo™ itself exercises a pretty broad portion of the language, and the standard packages we rely on (which erGo™ had to compile before it could compile itself) only add to that. It gave us a very useful validation tool.
How did we do it? With a very unusual (and at times irritating) development setup. We run on Windows machines with Ubuntu running inside a VM. Then we used shared directories (via networking) so that we can access files from both sides. We run a two step makefile process. First, we use 6g to compile a version of erGo™ that runs as a Linux binary. That compiler is then used to compile a Windows binary on the Windows side of the box, and we build our test suites using that.
Read more: The erGo™ Blog