Changeset 452 for tags


Ignore:
Timestamp:
Jul 30, 2022, 8:07:05 PM (21 months ago)
Author:
chronos
Message:
  • Added: ARM 64-bit deb package.
Location:
tags/1.3.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tags/1.3.1/AI/StdAI/StdAI.ai.txt

    r124 r452  
    55#PATH_WIN32 StdAI-win32.dll
    66#PATH_WIN64 StdAI-win64.dll
    7 #PATH_LINUX32 libstdai-i386.so
    8 #PATH_LINUX64 libstdai-amd64.so
     7#PATH_LINUX_I386 libstdai-i386.so
     8#PATH_LINUX_AMD64 libstdai-amd64.so
     9#PATH_LINUX_ARM32 libstdai-arm32.so
     10#PATH_LINUX_ARM64 libstdai-arm64.so
    911#CREDITS Standard AI by Steffen Gerlach.
  • tags/1.3.1/UBrain.pas

    r442 r452  
    125125      DLLName := BasePath + DirectorySeparator + Value
    126126    {$ENDIF}{$ENDIF}
    127     {$IFDEF UNIX}{$IFDEF CPU32}
    128     else if Key = '#PATH_LINUX32' then
    129       DLLName := BasePath + DirectorySeparator + Value
    130     {$ENDIF}{$ENDIF}
    131     {$IFDEF UNIX}{$IFDEF CPU64}
    132     else if Key = '#PATH_LINUX64' then
     127    {$IFDEF UNIX}{$IFDEF CPUI386}
     128    else if Key = '#PATH_LINUX_I386' then
     129      DLLName := BasePath + DirectorySeparator + Value
     130    {$ENDIF}{$ENDIF}
     131    {$IFDEF UNIX}{$IFDEF CPUAMD64}
     132    else if Key = '#PATH_LINUX_AMD64' then
     133      DLLName := BasePath + DirectorySeparator + Value
     134    {$ENDIF}{$ENDIF}
     135    {$IFDEF UNIX}{$IFDEF CPUARM}
     136    else if Key = '#PATH_LINUX_ARM32' then
     137      DLLName := BasePath + DirectorySeparator + Value
     138    {$ENDIF}{$ENDIF}
     139    {$IFDEF UNIX}{$IFDEF CPUAARCH64}
     140    else if Key = '#PATH_LINUX_ARM64' then
    133141      DLLName := BasePath + DirectorySeparator + Value
    134142    {$ENDIF}{$ENDIF}
     
    206214end.
    207215
     216
Note: See TracChangeset for help on using the changeset viewer.