mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 19:05:54 +02:00
* sorted defines in the compiler: mips64 is defined on all 64 Bit mips platforms, mips64el for little endian, misp64eb for big endian
This commit is contained in:
parent
f56b6728a5
commit
28964711d7
@ -276,10 +276,10 @@
|
||||
{$endif mips}
|
||||
{$endif mipsel}
|
||||
|
||||
{$ifdef mips64}
|
||||
{$ifdef mips64eb}
|
||||
{$define mips}
|
||||
{$define mips64}
|
||||
{$endif mips64}
|
||||
{$endif mips64eb}
|
||||
|
||||
{$ifdef mips64el}
|
||||
{$define mips}
|
||||
|
@ -4204,7 +4204,7 @@ procedure read_arguments(cmd:TCmdStr);
|
||||
def_system_macro('FPC_LOCALS_ARE_STACK_REG_RELATIVE');
|
||||
{$endif mipseb}
|
||||
|
||||
{$ifdef mips64}
|
||||
{$ifdef mips64eb}
|
||||
def_system_macro('CPUMIPS');
|
||||
def_system_macro('CPUMIPS64');
|
||||
def_system_macro('CPUMIPSEB64');
|
||||
@ -4216,7 +4216,7 @@ procedure read_arguments(cmd:TCmdStr);
|
||||
def_system_macro('FPC_REQUIRES_PROPER_ALIGNMENT');
|
||||
{ See comment above for mipsel }
|
||||
def_system_macro('FPC_LOCALS_ARE_STACK_REG_RELATIVE');
|
||||
{$endif mips64}
|
||||
{$endif mips64eb}
|
||||
|
||||
{$ifdef mips64el}
|
||||
def_system_macro('CPUMIPS');
|
||||
|
@ -1204,9 +1204,9 @@ begin
|
||||
{$endif ndef default_target_set}
|
||||
{$endif xtensa}
|
||||
|
||||
{$ifdef mips64}
|
||||
{$ifdef mips64eb}
|
||||
default_target(system_mips64_linux);
|
||||
{$endif mips64}
|
||||
{$endif mips64eb}
|
||||
|
||||
{$ifdef mips64el}
|
||||
default_target(system_mips64el_linux);
|
||||
|
@ -1316,11 +1316,11 @@ initialization
|
||||
RegisterTarget(system_mipseb_linux_info);
|
||||
{$endif MIPSEL}
|
||||
{$endif MIPS32}
|
||||
{$ifdef MIPS64}
|
||||
{$ifdef MIPS64EB}
|
||||
RegisterImport(system_mips64_linux,timportliblinux);
|
||||
RegisterExport(system_mips64_linux,texportliblinux);
|
||||
RegisterTarget(system_mips64_linux_info);
|
||||
{$endif MIPS64}
|
||||
{$endif MIPS64EB}
|
||||
{$ifdef MIPS64EL}
|
||||
RegisterImport(system_mips64el_linux,timportliblinux);
|
||||
RegisterExport(system_mips64el_linux,texportliblinux);
|
||||
|
Loading…
Reference in New Issue
Block a user