From 3d1b0f3774810a4cf855841b8ac36bb67b60578a Mon Sep 17 00:00:00 2001 From: James Date: Mon, 7 Jan 2019 12:21:11 +0000 Subject: [PATCH] Update README.md --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c0ecd06a..5e70238d 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,20 @@ Requires: - [devkitPPC r31+](https://devkitpro.org/wiki/Getting_Started) ### Building on Windows -Use [WSL](https://docs.microsoft.com/en-us/windows/wsl/install-win10) and then follow the Linux instructions. +If you are using devkitPro then you can build wut using the provided msys2 environment: +``` +export PATH=$PATH:/opt/devkitpro/devkitPPC/bin +export DEVKITPPC=/opt/devkitpro/devkitPPC +pacman -S gcc cmake zlib-devel +git clone --recursive https://github.com/decaf-emu/wut.git +cd wut +mkdir build && cd build +cmake -DCMAKE_INSTALL_PREFIX=/opt/wut ../ +make install +export WUT_ROOT=/opt/wut +``` + +Or use [WSL](https://docs.microsoft.com/en-us/windows/wsl/install-win10) and then follow the Linux instructions after preparing your environment. For example, if you installed Ubuntu 18.04 then you might setup your environment like: