From 491def9d5b21de50889c3467f89016782c61a3e3 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Wed, 14 Aug 2024 10:50:53 +0100 Subject: [PATCH] Fix paths for amd64 targets --- vendor/box2d/box2d.odin | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vendor/box2d/box2d.odin b/vendor/box2d/box2d.odin index 7f26e3a0d..708ee5165 100644 --- a/vendor/box2d/box2d.odin +++ b/vendor/box2d/box2d.odin @@ -9,6 +9,8 @@ when ODIN_OS == .Windows { @(private) LIB_PATH :: "lib/box2d_windows_amd64_" + VECTOR_EXT + ".lib" } else when ODIN_OS == .Darwin { @(private) LIB_PATH :: ("lib/box2d_darwin_amd64_" + VECTOR_EXT + ".a") when ODIN_ARCH == .amd64 else "lib/box2d_darwin_arm64.a" +} else when ODIN_ARCH == .amd64 { + @(private) LIB_PATH :: "lib/box2d_other_" + VECTOR_EXT + ".a" } else { @(private) LIB_PATH :: "lib/box2d_other.a" }