From 55d9e7bc31ae67fd5a30627a02902ea8cd326ced Mon Sep 17 00:00:00 2001 From: ObAkinyemi <193733384+ObAkinyemi@users.noreply.github.com> Date: Fri, 14 Nov 2025 10:31:25 -0700 Subject: [PATCH] Updated Working on GNU Linux (markdown) --- 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 c804766..1dbd879 100644 --- a/Working-on-GNU-Linux.md +++ b/Working-on-GNU-Linux.md @@ -320,7 +320,7 @@ all: ## The simplest possible build command After installing raylib from source or package manager, you can build a project with this command (modify as necessary): ``` -cc game.c -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 +gcc game.c -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 ``` Creating a Makefile will help with building as the project grows.