diff options
author | Luke <luke.wilde@live.co.uk> | 2020-09-03 01:33:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-03 11:03:34 +0200 |
commit | 9b9c752dbefcb9f7919ee6e3d76d77556e2e5d9e (patch) | |
tree | fb81009acff003a2edb684dd5d1066e9811b123c /Documentation | |
parent | 1da38eeb3c198efb01d052761ffa275704999b01 (diff) | |
download | serenity-9b9c752dbefcb9f7919ee6e3d76d77556e2e5d9e.zip |
Documentation: Add Windows section in build instructions
It seems that new people go to the build instructions from the main
README, don't see Windows and are then stuck.
We do have instructions for Windows, but they aren't noted in the build
instructions, so new people get stuck thinking there's no way to build
on Windows.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/BuildInstructions.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 7fc1fc02ea..174dd438fc 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -69,6 +69,11 @@ pkg_add bash gmp gcc git flock gmake sudo $ pkg add coreutils gmake bash sudo git ``` +#### Windows +For Windows, you will require Windows Subsystem for Linux 2 (WSL2). [Follow the WSL2 instructions here.](https://github.com/SerenityOS/serenity/blob/master/Documentation/NotesOnWSL.md) +Do note the ```Hardware acceleration``` and ```Note on filesystems``` sections, otherwise performance will be terrible. +Once you have installed a distro for WSL2, follow the Linux prerequisites above for the distro you installed, then continue as normal. + ### Build > Before starting, make sure that you have configured your global identity for git, or the first script will fail after running for a bit. |