PascalScript: exclude *all* none x86 from attempting to compile x86 code

git-svn-id: trunk@44119 -
This commit is contained in:
martin 2014-02-17 18:18:56 +00:00
parent 16b4faacff
commit d938c3b9e5

View File

@ -11526,7 +11526,9 @@ end;
{$ENDIF}
{$ifdef fpc}
{$if defined(cpupowerpc) or defined(cpuarm) or defined(cpu64)}
{$if defined(cpu86)} // Has MyAllMethodsHandler
{$else}
// {$if defined(cpupowerpc) or defined(cpuarm) or defined(cpu64)}
{$define empty_methods_handler}
{$ifend}
{$endif}