@@ -5,6 +5,7 @@ You need these things at minimum to compile the game:
5
5
6
6
- a C compiler (Clang or GCC)
7
7
- Make
8
+ - diffutils (cmp)
8
9
9
10
You will also need additional dependencies based on the build options you select.
10
11
You can see the options and their requirements in ` config.mk ` . You can configure
@@ -23,13 +24,13 @@ tested by the author and is relatively simple.
23
24
24
25
### Setting up
25
26
26
- 1 . Install [ MSYS2] [ 1 ] for x86_64. Refer to [ its wiki ] [ 2 ] for essential info
27
+ 1 . Install [ MSYS2] [ 1 ] for x86_64. Refer to the website for essential info
27
28
on how to use it.
28
29
29
30
2 . (Installing the dependencies) Open the MSYS2 shell and run the following:
30
31
31
32
```
32
- pacman -S make mingw-w64-x86_64-{gcc,SDL2,SDL2_image}
33
+ pacman -S make diffutils mingw-w64-x86_64-{gcc,SDL2,SDL2_image}
33
34
```
34
35
35
36
### Building
@@ -100,7 +101,7 @@ These instructions are for the graphical version only.
100
101
1. Install the dependencies; for example, on Debian/Ubuntu, run
101
102
102
103
```
103
- sudo apt install make gcc libsdl2-2.0-0 libsdl2-dev libsdl2-image-2.0-0 libsdl2-image-dev
104
+ sudo apt install make gcc diffutils libsdl2-2.0-0 libsdl2-dev libsdl2-image-2.0-0 libsdl2-image-dev
104
105
```
105
106
106
107
### Building
@@ -113,6 +114,5 @@ These instructions are for the graphical version only.
113
114
114
115
115
116
[1]: https://www.msys2.org/
116
- [2]: https://github.com/msys2/msys2/wiki
117
117
[3]: https://www.java.com/en/download/help/path.xml
118
118
[4]: https://brew.sh/
0 commit comments