mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 04:18:48 +02:00
fixed target cpu a64 to aarch64
git-svn-id: trunk@51816 -
This commit is contained in:
parent
161225d29f
commit
330696b99e
@ -181,7 +181,7 @@ const
|
||||
'bsd', 'linux' // see GetDefaultSrcOS2ForTargetOS
|
||||
);
|
||||
FPCProcessorNames: array[1..12] of shortstring =(
|
||||
'a64',
|
||||
'aarch64',
|
||||
'arm',
|
||||
'avr',
|
||||
'i386',
|
||||
@ -3003,8 +3003,8 @@ begin
|
||||
Result:=Result+'x64'
|
||||
else if SysUtils.CompareText(TargetCPU,'ia64')=0 then
|
||||
Result:=Result+'ia64'
|
||||
else if SysUtils.CompareText(TargetCPU,'a64')=0 then
|
||||
Result:=Result+'a64'
|
||||
else if SysUtils.CompareText(TargetCPU,'aarch64')=0 then
|
||||
Result:=Result+'aarch64'
|
||||
else
|
||||
Result:='fpc';
|
||||
Result:=Result+ExeExt;
|
||||
@ -3090,7 +3090,7 @@ begin
|
||||
'x86_64' : Intel_x86_64;
|
||||
'mipsel','mips' : Mips;
|
||||
'jvm' : ;
|
||||
'a64' : ;
|
||||
'aarch64': ;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -198,7 +198,7 @@ const
|
||||
'mipsel',
|
||||
'jvm',
|
||||
'i8086',
|
||||
'a64'
|
||||
'aarch64'
|
||||
);
|
||||
|
||||
// from ppu.pas
|
||||
|
@ -1086,7 +1086,7 @@ begin
|
||||
with TargetCPUComboBox do begin
|
||||
with Items do begin
|
||||
Add(''); //('+rsiwpDefault+')');
|
||||
Add('a64');
|
||||
Add('aarch64');
|
||||
Add('arm');
|
||||
Add('i386');
|
||||
Add('m68k');
|
||||
|
Loading…
Reference in New Issue
Block a user