From 04c9543e96c0326730f146b1ecbf49e6283889a8 Mon Sep 17 00:00:00 2001 From: Elias Ebner Date: Tue, 14 Jul 2026 01:42:56 +0200 Subject: [PATCH] fixed the import paths for raylib and rlgl. both had the issue that they were looking for a directory called "linux-arm" when it's really called "linux-arm64" inside of "vendor/raylib". --- vendor/raylib/raylib.odin | 2 +- vendor/raylib/rlgl/rlgl.odin | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin index 01f4199ff..01235b6ec 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -115,7 +115,7 @@ when ODIN_OS == .Windows { // multiple copies of raylib.so, but since these bindings are for // particular version of the library, I better specify it. Ideally, // though, it's best specified in terms of major (.so.4) - "linux-arm64/libraylib.so.600" when RAYLIB_SHARED else "linux-arm/libraylib.a", + "linux-arm64/libraylib.so.600" when RAYLIB_SHARED else "linux-arm64/libraylib.a", "system:dl", "system:pthread", "system:X11", diff --git a/vendor/raylib/rlgl/rlgl.odin b/vendor/raylib/rlgl/rlgl.odin index aed63fac7..0655a4073 100644 --- a/vendor/raylib/rlgl/rlgl.odin +++ b/vendor/raylib/rlgl/rlgl.odin @@ -135,7 +135,7 @@ when ODIN_OS == .Windows { // multiple copies of raylib.so, but since these bindings are for // particular version of the library, I better specify it. Ideally, // though, it's best specified in terms of major (.so.4) - "../linux-arm64/libraylib.so.600" when RAYLIB_SHARED else "../linux-arm/libraylib.a", + "../linux-arm64/libraylib.so.600" when RAYLIB_SHARED else "../linux-arm64/libraylib.a", "system:dl", "system:pthread", "system:X11",