From 5a1a36b5edf1e41a2e8a5585d458e7f5accfbaa6 Mon Sep 17 00:00:00 2001 From: Eric H Date: Sat, 16 Feb 2019 14:14:00 -0500 Subject: [PATCH] libc6-dev was required on a fresh linux mint 19.1 install because it could not find /usr/include/unistd.h --- Linux.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Linux.md b/Linux.md index 3bf0462..cbf01c0 100644 --- a/Linux.md +++ b/Linux.md @@ -4,6 +4,7 @@ See [[installation]]. Before installing Ebiten, you might need these libraries: +* libc6-dev * libglu1-mesa-dev * libgles2-mesa-dev * libxrandr-dev @@ -14,7 +15,7 @@ Before installing Ebiten, you might need these libraries: To install the dependencies on Ubuntu, run ```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.