From 7f466d26d946a1b01fbfab18d2d3db4b39afff81 Mon Sep 17 00:00:00 2001
From: Superstarxalien <ernesto_vallenilla@hotmail.com>
Date: Wed, 28 Aug 2024 04:19:50 +0000
Subject: [PATCH] attempt at compiling followermaker for 32-bit windows

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e4738ce..7c1d9cb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -28,7 +28,7 @@ build-windows:       # This job runs in the build stage, which runs first.
   script:
     - apt-get update && apt-get install -y clang-15 mingw-w64
     - echo "Compiling the code... [windows]"
-    - clang-15 src/lump.c src/lodepng.c src/main.c src/cJSON.c src/zip.c -o followermaker.exe -lm --target=x86_64-w64-mingw32 --sysroot=/usr/x86_64-w64-mingw32 -L/usr/lib/gcc/x86_64-w64-mingw32/12-win32 -lgcc -lgcc_eh
+    - clang-15 src/lump.c src/lodepng.c src/main.c src/cJSON.c src/zip.c -o followermaker.exe -lm --target=i686-w64-mingw32 --sysroot=/usr/i686-w64-mingw32 -L/usr/lib/gcc/i686-w64-mingw32/12-win32 -lgcc -lgcc_eh
     - echo "Compile complete."
   artifacts:
     name: "Followermaker-windows"
-- 
GitLab