ladybird/Documentation/BuildInstructionsWindows.md
Gunnar Beutner b805708c6f Documentation: Make sure Windows have QEMU tools in their WSL2 system
They don't need QEMU to run the VM but they do at least need the QEMU
tools to build the image.
2021-07-13 12:57:21 +02:00

2.9 KiB

Setting up a development environment on Windows

SerenityOS can be built and run under WSL Version 2. WSL Version 1 is not supported since Version 1 does not support ext2, which is needed for the setup.

WSL Version 2 requires Windows 10 version 2004 or higher, with OS Build 19041 or greater. Here is a guide on how to get WSL2.

Once installed, you will need to make sure the distribution you want to use (and the new default) is using Version 2:

  • wsl -l -v lists distros and versions,
  • wsl --set-version <distro> <version> is used to convert a distro to another version, and
  • wsl --set-default-version 2 will set the default version for all new distros (if desired.)

Note on filesystems

WSL2 filesystem performance for IO heavy tasks (such as compiling a large C++ project) on the host Windows filesystem is pretty bad. See this issue on the WSL GitHub project for details.

The recommendation from the Microsoft team on that issue is:

If it's at all possible, store your projects in the Linux file system in WSL2.

In practice, this means cloning and building the project to somewhere such as /home/username/serenity.

Setting up build tools

Please see the general build instructions for a list of tools you need to install in your WSL Linux environment.

Setting up QEMU

Grab the latest QEMU binaries from here and install them. At a minimum you will need to install the tools as well as the system emulators for i386 and x86_64.

QEMU Components

Locate the qemu-system-x86_64.exe executable in WSL. By default this will be at /mnt/c/Program Files/qemu/qemu-system-x86_64.exe.

Set the SERENITY_QEMU_BIN environment variable to that location. For example:
export SERENITY_QEMU_BIN='/mnt/c/Program Files/qemu/qemu-system-x86_64.exe'

Run Meta/serenity.sh run to build and run SerenityOS as usual.

Hardware acceleration

The steps above will run QEMU in software virtualization mode, which is very slow. QEMU supports hardware acceleration on Windows via the Windows Hypervisor Platform (WHPX).

Enable the Windows Hypervisor Platform feature, either using "Turn Windows features on or off", or by running the following command in an elevated PowerShell session:
dism /Online /Enable-Feature /All /FeatureName:HypervisorPlatform

WHPX Windows Feature

Set the SERENITY_VIRT_TECH_ARG environment variable in your WSL2 shell:
export SERENITY_VIRT_TECH_ARG="-accel whpx,kernel-irqchip=off"

You might want to add those environment variables to your shell's configuration file, so that you don't have to set them manually each time you start a new shell.

Start the VM with Meta/serenity.sh run as usual.