Sfoglia il codice sorgente

+ added armv7 identifier (no special code generation, but required to
link against Xcode 3.2.6/4-generated code for ARMv7 -- use -Cparmv7,
but note that you also have to compile the RTL and all other units with
this option for them to be linkable against other ARMv7 code when using
those tools)

git-svn-id: trunk@18069 -

Jonas Maebe 14 anni fa
parent
commit
da056da20f
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      compiler/arm/cpuinfo.pas

+ 2 - 0
compiler/arm/cpuinfo.pas

@@ -36,6 +36,7 @@ Type
        cpu_armv4,
        cpu_armv4,
        cpu_armv5,
        cpu_armv5,
        cpu_armv6,
        cpu_armv6,
+       cpu_armv7,
        cpu_armv7m,
        cpu_armv7m,
        cpu_cortexm3
        cpu_cortexm3
       );
       );
@@ -109,6 +110,7 @@ Const
      'ARMV4',
      'ARMV4',
      'ARMV5',
      'ARMV5',
      'ARMV6',
      'ARMV6',
+     'ARMV7',
      'ARMV7M',
      'ARMV7M',
      'CORTEXM3'
      'CORTEXM3'
    );
    );