From 1f65583b34b61372aef1e012de122bb66f7419af Mon Sep 17 00:00:00 2001 From: ratkosrb <35845488+ratkosrb@users.noreply.github.com> Date: Wed, 10 Jul 2024 20:14:02 +0300 Subject: [PATCH] Fix g3d build issue on arm --- dep/include/g3dlite/G3D/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dep/include/g3dlite/G3D/platform.h b/dep/include/g3dlite/G3D/platform.h index d043f21491a..3f6f8d2857f 100644 --- a/dep/include/g3dlite/G3D/platform.h +++ b/dep/include/g3dlite/G3D/platform.h @@ -273,7 +273,7 @@ int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw) {\ # define __stdcall __attribute__((stdcall)) # endif -# elif defined(__x86_64__) || defined(__arm) || defined(__aarch64__) +# elif defined(__x86_64__) || defined(__arm) || defined(__arm__) || defined(__aarch64__) # ifndef __cdecl # define __cdecl