* libffi: fix abi declarations for x86_64

This commit is contained in:
Sven/Sarah Barth 2021-12-26 11:35:22 +01:00
parent 00f4aeb39b
commit b54068d1a4

View File

@ -83,7 +83,11 @@ type
{$endif}
ffi_abi = (
{$if defined(CPUX86_64) and not defined(WIN64)}
FFI_FIRST_ABI = 1,
{$else}
FFI_FIRST_ABI,
{$endif}
{$if not defined(CPUMIPS) and not defined(CPUX86_64) and not defined(CPUPOWERPC) and not defined(CPUSPARCGEN)}
FFI_SYSV,
{$endif}
@ -103,6 +107,7 @@ type
FFI_UNIX64,
{$endif}
FFI_WIN64,
FFI_GNUW64,
{$endif}
{$if defined(CPUI386)}
{$ifdef WIN32}
@ -117,6 +122,9 @@ type
{$endif}
FFI_PASCAL,
FFI_REGISTER,
{$ifndef WIN32}
FFI_MS_CDECL,
{$endif}
{$endif}
{$if defined(CPUSPARC32)}
FFI_V8,