From e8c9abd29a569e919ed74628a078f92ef9cc125a Mon Sep 17 00:00:00 2001 From: Peter0x44 Date: Fri, 3 Dec 2021 05:16:17 +0000 Subject: [PATCH] Removed the note "recommending" to build raylib as a shared library. There are very few cases where this is beneficial. --- Working-on-GNU-Linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-on-GNU-Linux.md b/Working-on-GNU-Linux.md index ea5732e..fdb9625 100644 --- a/Working-on-GNU-Linux.md +++ b/Working-on-GNU-Linux.md @@ -34,7 +34,7 @@ Download the raylib repository from [Github](https://github.com/raysan5/raylib), git clone https://github.com/raysan5/raylib.git raylib cd raylib/src/ make PLATFORM=PLATFORM_DESKTOP # To make the static version. - make PLATFORM=PLATFORM_DESKTOP RAYLIB_LIBTYPE=SHARED # To make the dynamic shared version. - Recommended + make PLATFORM=PLATFORM_DESKTOP RAYLIB_LIBTYPE=SHARED # To make the dynamic shared version. make PLATFORM=PLATFORM_WEB # To make web version. **Warning:** if you want to compile a different type of library (static, ...), you must type `make clean` before the compiling.