* x86_64-android requires sigreturn for proper signal handling.

git-svn-id: trunk@39960 -
This commit is contained in:
yury 2018-10-17 17:53:57 +00:00
parent 7ddf0a635c
commit d1b1655441

View File

@ -253,13 +253,21 @@ asm
end; end;
{$endif cpusparc or cpusparc64} {$endif cpusparc or cpusparc64}
{$ifndef android} {$if defined(android)}
{$if defined(cpux86_64)}
{$define NEED_USER_TRAMPOLINE}
{$endif}
{$else not android}
{$if defined(cpui386) or defined(cpuarm) or defined(cpux86_64)} {$if defined(cpui386) or defined(cpuarm) or defined(cpux86_64)}
{$define NEED_USER_TRAMPOLINE} {$define NEED_USER_TRAMPOLINE}
{$endif} {$endif}
{$if defined(cpui386) or defined(cpuarm)} {$if defined(cpui386) or defined(cpuarm)}
{$define NEED_USER_TRAMPOLINE_RT_DIFFERENT} {$define NEED_USER_TRAMPOLINE_RT_DIFFERENT}
{$endif} {$endif}
{$endif android} {$endif android}
{$ifdef NEED_USER_TRAMPOLINE} {$ifdef NEED_USER_TRAMPOLINE}