mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 12:25:59 +02:00
Add defautl mips name and use mips instead of mipseb
git-svn-id: trunk@21711 -
This commit is contained in:
parent
0c32756ef3
commit
3a082f8c29
@ -155,6 +155,15 @@ program fpc;
|
|||||||
ppcbin:='ppcx64';
|
ppcbin:='ppcx64';
|
||||||
processorname:='x86_64';
|
processorname:='x86_64';
|
||||||
{$endif x86_64}
|
{$endif x86_64}
|
||||||
|
{$ifdef mipsel}
|
||||||
|
ppcbin:='ppcmipsel';
|
||||||
|
processorname:='mipsel';
|
||||||
|
{$else : not mipsel}
|
||||||
|
{$ifdef mips}
|
||||||
|
ppcbin:='ppcmips';
|
||||||
|
processorname:='mips';
|
||||||
|
{$endif mips}
|
||||||
|
{$endif not mipsel}
|
||||||
versionstr:=''; { Default is just the name }
|
versionstr:=''; { Default is just the name }
|
||||||
if ParamCount = 0 then
|
if ParamCount = 0 then
|
||||||
begin
|
begin
|
||||||
@ -201,8 +210,8 @@ program fpc;
|
|||||||
cpusuffix:='386'
|
cpusuffix:='386'
|
||||||
else if processorstr='m68k' then
|
else if processorstr='m68k' then
|
||||||
cpusuffix:='68k'
|
cpusuffix:='68k'
|
||||||
else if processorstr='mipseb' then
|
else if processorstr='mips' then
|
||||||
cpusuffix:='mipseb'
|
cpusuffix:='mips'
|
||||||
else if processorstr='mipsel' then
|
else if processorstr='mipsel' then
|
||||||
cpusuffix:='mipsel'
|
cpusuffix:='mipsel'
|
||||||
else if processorstr='powerpc' then
|
else if processorstr='powerpc' then
|
||||||
|
Loading…
Reference in New Issue
Block a user