From a0935309808d60ff1b60ef96a902b6f0421925f8 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sun, 20 Oct 2019 16:33:29 +0200 Subject: [PATCH] MinGW instructions also work on Windows now --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 755591586..118955bbd 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ cmake --build . -j $(sysctl -n hw.ncpu)
Windows via MinGW -### Installing dependencies on Debian and Ubuntu +### Installing dependencies on WSL, Debian and Ubuntu Download and place the 32bit MinGW Development Libraries of [SDL2](https://www.libsdl.org/download-2.0.php), [SDL2_mixer](https://www.libsdl.org/projects/SDL_mixer/), [SDL2_ttf](https://www.libsdl.org/projects/SDL_ttf/) and [Libsodium](https://github.com/jedisct1/libsodium/releases) in `/usr/i686-w64-mingw32`. @@ -73,7 +73,7 @@ sudo apt-get install cmake gcc-mingw-w64-i686 g++-mingw-w64-i686 ### Compiling ``` cd build -cmake -DASAN=OFF -DCMAKE_TOOLCHAIN_FILE=../CMake/mingwcc.cmake .. +cmake -DASAN=OFF -UBSAN=OFF -DCMAKE_TOOLCHAIN_FILE=../CMake/mingwcc.cmake .. cmake --build . -j $(nproc) ```