libc6-dev was required on a fresh linux mint 19.1 install because it could not find /usr/include/unistd.h

Eric H 2019-02-16 14:14:00 -05:00
parent 5be87a3a3e
commit 5a1a36b5ed

@ -4,6 +4,7 @@ See [[installation]].
Before installing Ebiten, you might need these libraries: Before installing Ebiten, you might need these libraries:
* libc6-dev
* libglu1-mesa-dev * libglu1-mesa-dev
* libgles2-mesa-dev * libgles2-mesa-dev
* libxrandr-dev * libxrandr-dev
@ -14,7 +15,7 @@ Before installing Ebiten, you might need these libraries:
To install the dependencies on Ubuntu, run To install the dependencies on Ubuntu, run
```sh ```sh
$ sudo apt install libglu1-mesa-dev libgles2-mesa-dev libxrandr-dev libxcursor-dev libxinerama-dev libxi-dev libasound2-dev $ sudo apt install libc6-dev libglu1-mesa-dev libgles2-mesa-dev libxrandr-dev libxcursor-dev libxinerama-dev libxi-dev libasound2-dev
``` ```
Ebiten is tested on Ubuntu Linux x64. Ebiten is tested on Ubuntu Linux x64.