Cross-platform development on Windows is suddenly awesome

W. Brian Gourlie
3 min readNov 7, 2016

--

Anyone who’s done cross-platform development on Windows knows that getting things to compile can be a huge pain in the ass. Sometimes it’s not even possible. The whole situation kinda sucked, until now.

Enter Linux on Windows

There’s this new thing called the Windows Subsystem for Linux. Without going into too much detail, WSL provides a bash shell that exposes a Linux environment. It’s native Linux, too — These are ELF binaries running inside Windows. The Windows file-system is fully accessible, with each drive having its own mount point. Linux processes can bind to the Windows loopback address and it all just works. You can read the technical details here, but the practical implications are simple enough: Windows is finally a good OS for doing cross-platform development.

A native Linux environment running inside Windows.

WSL isn’t installed by default, so you’ll need to follow these instructions to get started.

A practical example

I do a lot of Rust development in my personal time. Rust actually has excellent Windows support, however, there are packages that link against C libraries that aren’t well supported on Windows. One of my projects depends transitively on OpenSSL, for example. Trying to compile on Windows results in this:

While most of these issues can be resolved with enough persistence, it’s a huge waste of time and effort. My typical reaction is to ditch my beefy desktop and its multiple monitors for a small, relatively under-powered MacBook where things just work. Not anymore!

To get started, I needed to install the Linux Rust toolchain. Something I haven’t mentioned to this point is that the WSL uses Ubuntu, meaning it uses apt for package management. Installing things from the bash shell inside Windows is no different than doing it on any other Ubuntu installation:

brian@DESKTOP-O4RQ37I:~$ sudo apt-get install build-essential
...
brian@DESKTOP-O4RQ37I:~$ curl https://sh.rustup.rs -sSf | sh
...

First I install the build-essential package which installs gcc (among other things). Then I install rustup, Rust’s toolchain manager, via its handy shell script. That’s it — I navigate to the same code base that failed to compile within the standard prompt and compile it from the bash shell instead:

I was even able to configure IntelliJ IDEA to launch the bash shell in its terminal, meaning my entire workflow stays the same. The difference is that I’m now compiling a Linux binary and running it directly in Windows!

--

--