mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-21 16:37:20 +01:00
GDNative: Fix Linux riscv warning about ignored sysv_abi
This commit is contained in:
parent
84864fbe35
commit
f7490335a4
@ -46,7 +46,7 @@ extern "C" {
|
||||
#define GDCALLINGCONV __attribute__((sysv_abi))
|
||||
#endif
|
||||
#else // Linux/BSD/Web
|
||||
#if defined(__aarch64__) || defined(__arm__)
|
||||
#if defined(__aarch64__) || defined(__arm__) || defined(__riscv)
|
||||
#define GDCALLINGCONV
|
||||
#else
|
||||
#define GDCALLINGCONV __attribute__((sysv_abi))
|
||||
|
Loading…
Reference in New Issue
Block a user