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