From 85146c2646668d6b00ca5a0f4b577ab0d7595203 Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Thu, 15 Feb 2024 14:30:03 +0100 Subject: [PATCH] GDNative: Fix Linux arm32 warning about ignored sysv_abi attribute --- modules/gdnative/include/gdn/gdnative.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gdnative/include/gdn/gdnative.h b/modules/gdnative/include/gdn/gdnative.h index 1ccd90708..f28112065 100644 --- a/modules/gdnative/include/gdn/gdnative.h +++ b/modules/gdnative/include/gdn/gdnative.h @@ -46,7 +46,7 @@ extern "C" { #define GDCALLINGCONV __attribute__((sysv_abi)) #endif #else // Linux/BSD/Web -#if defined(__aarch64__) +#if defined(__aarch64__) || defined(__arm__) #define GDCALLINGCONV #else #define GDCALLINGCONV __attribute__((sysv_abi))