From 18383ce583ae0542a5ecb954ebf44da293ecdc2d Mon Sep 17 00:00:00 2001 From: Kevin Kmetz Date: Tue, 10 Feb 2026 14:37:19 -0700 Subject: [PATCH] The "utils.c" file was removed in commit "dd7a194" on January 10th, 2026. The build instructions in section 2.1 as written will fail if followed. Updating to match the current state of the source code. The build instructions for Emscripten / HTML5 omitting "utils.c" were successfully run last night. --- Working-for-Web-(HTML5).md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Working-for-Web-(HTML5).md b/Working-for-Web-(HTML5).md index 36267d9..dcde401 100644 --- a/Working-for-Web-(HTML5).md +++ b/Working-for-Web-(HTML5).md @@ -52,10 +52,9 @@ emcc -c rshapes.c -Os -Wall -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2 emcc -c rtextures.c -Os -Wall -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2 emcc -c rtext.c -Os -Wall -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2 emcc -c rmodels.c -Os -Wall -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2 -emcc -c utils.c -Os -Wall -DPLATFORM_WEB emcc -c raudio.c -Os -Wall -DPLATFORM_WEB -emar rcs libraylib.a rcore.o rshapes.o rtextures.o rtext.o rmodels.o utils.o raudio.o +emar rcs libraylib.a rcore.o rshapes.o rtextures.o rtext.o rmodels.o raudio.o ``` Alternatively to `-DGRAPHICS_API_OPENGL_ES2`, the option `-DGRAPHICS_API_OPENGL_ES3` can also be passed.