Quellcode durchsuchen

+ eabi and armeb abi constants
+ abi2str array

git-svn-id: trunk@9154 -

florian vor 17 Jahren
Ursprung
Commit
ed75834533
1 geänderte Dateien mit 5 neuen und 1 gelöschten Zeilen
  1. 5 1
      compiler/systems.pas

+ 5 - 1
compiler/systems.pas

@@ -198,6 +198,7 @@ interface
 
        tabi = (abi_default
             ,abi_powerpc_sysv,abi_powerpc_aix
+            ,abi_eabi,abi_armeb
        );
 
 {*****************************************************************************
@@ -404,10 +405,13 @@ interface
              system_arm_embedded,system_powerpc64_embedded];
 
 
-       cpu2str : array[TSystemCpu] of string =
+       cpu2str : array[TSystemCpu] of string[10] =
             ('','i386','m68k','alpha','powerpc','sparc','vm','ia64','x86_64',
              'mips','arm', 'powerpc64');
 
+       abi2str : array[tabi] of string[10] =
+         ('default','sysv','aix','eabi','armeb');
+
     var
        targetinfos   : array[tsystem] of psysteminfo;
        arinfos       : array[tar] of parinfo;