* mips and xtensa compilation fixed

git-svn-id: trunk@48928 -
This commit is contained in:
florian 2021-03-09 21:07:51 +00:00
parent b4d37f78ac
commit b7fe338bbe

View File

@ -165,6 +165,16 @@ Type PINTRTLEvent = ^TINTRTLEvent;
threadvarblocksize:=align(threadvarblocksize,16);
{$endif cpuriscv}
{$ifdef cpumips}
{$define threadvarblocksize_set}
threadvarblocksize:=align(threadvarblocksize,16);
{$endif cpumips}
{$ifdef cpuxtensa}
{$define threadvarblocksize_set}
threadvarblocksize:=align(threadvarblocksize,16);
{$endif cpuxtensa}
{$ifndef threadvarblocksize_set}
{$error threadvarblocksize must be set! }
{$endif threadvarblocksize_set}