mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 03:39:09 +02:00
IDE: add PowerPc processor types to selection list.
git-svn-id: trunk@42909 -
This commit is contained in:
parent
a4e0551e92
commit
88103f57a5
@ -231,6 +231,14 @@ var
|
|||||||
aList.Add('ATHLON64');
|
aList.Add('ATHLON64');
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure PowerPc(aList: TStrings);
|
||||||
|
begin
|
||||||
|
aList.Add('604');
|
||||||
|
aList.Add('750');
|
||||||
|
aList.Add('7400');
|
||||||
|
aList.Add('970');
|
||||||
|
end;
|
||||||
|
|
||||||
procedure Sparc(aList: TStrings);
|
procedure Sparc(aList: TStrings);
|
||||||
begin
|
begin
|
||||||
aList.Add('SPARC V7');
|
aList.Add('SPARC V7');
|
||||||
@ -271,7 +279,7 @@ begin
|
|||||||
'arm' : Arm(TargetProcComboBox.Items);
|
'arm' : Arm(TargetProcComboBox.Items);
|
||||||
'i386' : Intel_i386(TargetProcComboBox.Items);
|
'i386' : Intel_i386(TargetProcComboBox.Items);
|
||||||
'm68k' : begin end;
|
'm68k' : begin end;
|
||||||
'powerpc': begin end;
|
'powerpc': PowerPc(TargetProcComboBox.Items);
|
||||||
'sparc' : Sparc(TargetProcComboBox.Items);
|
'sparc' : Sparc(TargetProcComboBox.Items);
|
||||||
'x86_64' : Intel_x86_64(TargetProcComboBox.Items);
|
'x86_64' : Intel_x86_64(TargetProcComboBox.Items);
|
||||||
'mipsel' : Mips(TargetProcComboBox.Items);
|
'mipsel' : Mips(TargetProcComboBox.Items);
|
||||||
|
Loading…
Reference in New Issue
Block a user