From 1a334ab53867d2817fcefa33b6fd320a9e01febe Mon Sep 17 00:00:00 2001 From: Jeffery Myers Date: Wed, 19 Nov 2025 19:23:20 -0800 Subject: [PATCH] Updated Working on GNU Linux (markdown) --- Working-on-GNU-Linux.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/Working-on-GNU-Linux.md b/Working-on-GNU-Linux.md index 1dbd879..c3cd8a7 100644 --- a/Working-on-GNU-Linux.md +++ b/Working-on-GNU-Linux.md @@ -62,7 +62,6 @@ You can compile three different types of raylib library: * The static library (default method) * The dynamic shared library -* The web library If you are unsure about which one you should use, pick the static library. @@ -72,7 +71,6 @@ Download the raylib repository from [Github](https://github.com/raysan5/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. - 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.