mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 07:09:23 +02:00
+ aarch64 cpu identifier
git-svn-id: trunk@29876 -
This commit is contained in:
parent
6995474ea0
commit
b5643f2a27
@ -188,7 +188,8 @@ const
|
|||||||
{ 12 } 16 {'avr'},
|
{ 12 } 16 {'avr'},
|
||||||
{ 13 } 32 {'mipsel'},
|
{ 13 } 32 {'mipsel'},
|
||||||
{ 14 } 32 {'jvm'},
|
{ 14 } 32 {'jvm'},
|
||||||
{ 15 } 16 {'i8086'}
|
{ 15 } 16 {'i8086'},
|
||||||
|
{ 16 } 64 {'aarch64'}
|
||||||
);
|
);
|
||||||
CpuAluBitSize : array[tsystemcpu] of longint =
|
CpuAluBitSize : array[tsystemcpu] of longint =
|
||||||
(
|
(
|
||||||
@ -207,7 +208,8 @@ const
|
|||||||
{ 12 } 8 {'avr'},
|
{ 12 } 8 {'avr'},
|
||||||
{ 13 } 32 {'mipsel'},
|
{ 13 } 32 {'mipsel'},
|
||||||
{ 14 } 64 {'jvm'},
|
{ 14 } 64 {'jvm'},
|
||||||
{ 15 } 16 {'i8086'}
|
{ 15 } 16 {'i8086'},
|
||||||
|
{ 16 } 64 {'aarch64'}
|
||||||
);
|
);
|
||||||
{$endif generic_cpu}
|
{$endif generic_cpu}
|
||||||
|
|
||||||
|
@ -49,7 +49,8 @@
|
|||||||
cpu_avr, { 12 }
|
cpu_avr, { 12 }
|
||||||
cpu_mipsel, { 13 }
|
cpu_mipsel, { 13 }
|
||||||
cpu_jvm, { 14 }
|
cpu_jvm, { 14 }
|
||||||
cpu_i8086 { 15 }
|
cpu_i8086, { 15 }
|
||||||
|
cpu_aarch64 { 16 }
|
||||||
);
|
);
|
||||||
|
|
||||||
tasmmode= (asmmode_none
|
tasmmode= (asmmode_none
|
||||||
|
@ -355,7 +355,8 @@ interface
|
|||||||
|
|
||||||
cpu2str : array[TSystemCpu] of string[10] =
|
cpu2str : array[TSystemCpu] of string[10] =
|
||||||
('','i386','m68k','alpha','powerpc','sparc','vm','ia64','x86_64',
|
('','i386','m68k','alpha','powerpc','sparc','vm','ia64','x86_64',
|
||||||
'mips','arm', 'powerpc64', 'avr', 'mipsel','jvm', 'i8086');
|
'mips','arm', 'powerpc64', 'avr', 'mipsel','jvm', 'i8086',
|
||||||
|
'aarch64');
|
||||||
|
|
||||||
abiinfo : array[tabi] of tabiinfo = (
|
abiinfo : array[tabi] of tabiinfo = (
|
||||||
(name: 'DEFAULT'; supported: true),
|
(name: 'DEFAULT'; supported: true),
|
||||||
|
@ -76,7 +76,8 @@ const
|
|||||||
{ 12 } 'avr',
|
{ 12 } 'avr',
|
||||||
{ 13 } 'mipsel',
|
{ 13 } 'mipsel',
|
||||||
{ 14 } 'jvm',
|
{ 14 } 'jvm',
|
||||||
{ 15 } 'i8086'
|
{ 15 } 'i8086',
|
||||||
|
{ 16 } 'aarch64'
|
||||||
);
|
);
|
||||||
|
|
||||||
{ List of all supported system-cpu couples }
|
{ List of all supported system-cpu couples }
|
||||||
|
Loading…
Reference in New Issue
Block a user