From 8cc6b988bf0140140cc93efa2c3fc0ec72a3158a Mon Sep 17 00:00:00 2001 From: Jon Pacheco Date: Tue, 4 Jun 2019 16:22:25 +0100 Subject: [PATCH] Update dependencies in README - Sorted list of dependencies in alphabetical order - Added mingw-w64-x86_64-mesa to MSYS instructions - Use nproc --all for determining number of make jobs --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 60215a1b..b4f05bad 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ As for the rest, the interface should be pretty straightforward. If you have a q * Install dependencies: ```sh -sudo apt-get install libpcap0.8-dev libcurl4-gnutls-dev libsdl2-dev gtk+-3.0 +sudo apt-get install gtk+-3.0 libcurl4-gnutls-dev libpcap0.8-dev libsdl2-dev ``` * Compile: @@ -47,11 +47,9 @@ sudo apt-get install libpcap0.8-dev libcurl4-gnutls-dev libsdl2-dev gtk+-3.0 mkdir -p build cd build cmake .. -make +make -j$(nproc --all) ``` - - ### Windows: * use CodeBlocks @@ -61,7 +59,7 @@ make 1. Install [MSYS2](https://www.msys2.org/) 2. Open the **MSYS2 MinGW 64-bit** terminal 3. Update the packages using `pacman -Syu` and reopen the terminal if it asks you to -4. Install dependencies: `pacman -S mingw-w64-x86_64-{toolchain,SDL2,cmake} make git` +4. Install dependencies: `pacman -S git make mingw-w64-x86_64-{cmake,mesa,SDL2,toolchain}` 5. Run the following commands ```bash git clone https://github.com/Arisotura/melonDS.git @@ -69,7 +67,7 @@ make mkdir build cd build cmake .. -G "MSYS Makefiles" - make -j5 + make -j$(nproc --all) ../msys-dist.sh ```