From 32c808ad79a9b99d3c763c4c6078c2f847258e5f Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 9 May 2018 10:42:04 +0200 Subject: [PATCH] Updated Working on GNU Linux (markdown) --- Working-on-GNU-Linux.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Working-on-GNU-Linux.md b/Working-on-GNU-Linux.md index 1f4ca89..402e096 100644 --- a/Working-on-GNU-Linux.md +++ b/Working-on-GNU-Linux.md @@ -4,7 +4,7 @@ To build your raylib game for GNU/Linux you need to download raylib git reposito This guide is for all GNU/Linux distros, just note that APT is used as package manager for Debian based distros. -#### Install basics and useful packages +#### Install required tools You need a **GCC** (or alternative C99 compiler), **make** and **git** (to download raylib repo). sudo apt install build-essential git @@ -13,7 +13,7 @@ Optionally, you could use **CMake** building system. sudo apt install cmake -#### Install raylib dependencies +#### Install required libraries You need to install some required libraries; **ALSA** for audio, **Mesa** for OpenGL accelerated graphics and **X11** for windowing system. sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev