mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-26 14:40:29 +02:00
+ Added extra cpus
git-svn-id: trunk@6859 -
This commit is contained in:
parent
0edcb0420d
commit
374bd2d809
@ -154,6 +154,7 @@ end;
|
|||||||
|
|
||||||
function GetDefaultTargetCPU: string;
|
function GetDefaultTargetCPU: string;
|
||||||
begin
|
begin
|
||||||
|
Result:='undefined';
|
||||||
{$IFDEF CPUPowerPC}
|
{$IFDEF CPUPowerPC}
|
||||||
Result:='powerpc';
|
Result:='powerpc';
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
@ -163,6 +164,18 @@ begin
|
|||||||
{$IFDEF CPUi386}
|
{$IFDEF CPUi386}
|
||||||
Result:='i386';
|
Result:='i386';
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
{$IFDEF CPUSparc}
|
||||||
|
Result:='sparc';
|
||||||
|
{$ENDIF}
|
||||||
|
{$IFDEF CPUALPHA}
|
||||||
|
Result:='alpha';
|
||||||
|
{$ENDIF}
|
||||||
|
{$IFDEF CPUX86_64}
|
||||||
|
Result:='x86_64';
|
||||||
|
{$ENDIF}
|
||||||
|
{$IFDEF CPUARM}
|
||||||
|
Result:='arm';
|
||||||
|
{$ENDIF}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function GetDefaultCompilerFilename: string;
|
function GetDefaultCompilerFilename: string;
|
||||||
@ -242,6 +255,9 @@ end.
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.37 2005/02/27 16:21:53 marc
|
||||||
|
+ Added extra cpus
|
||||||
|
|
||||||
Revision 1.36 2005/02/27 16:13:45 marc
|
Revision 1.36 2005/02/27 16:13:45 marc
|
||||||
+ Added all possible compilernames
|
+ Added all possible compilernames
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user