mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 13:59:29 +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';
|
||||
processorname:='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 }
|
||||
if ParamCount = 0 then
|
||||
begin
|
||||
@ -201,8 +210,8 @@ program fpc;
|
||||
cpusuffix:='386'
|
||||
else if processorstr='m68k' then
|
||||
cpusuffix:='68k'
|
||||
else if processorstr='mipseb' then
|
||||
cpusuffix:='mipseb'
|
||||
else if processorstr='mips' then
|
||||
cpusuffix:='mips'
|
||||
else if processorstr='mipsel' then
|
||||
cpusuffix:='mipsel'
|
||||
else if processorstr='powerpc' then
|
||||
|
Loading…
Reference in New Issue
Block a user