mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 01:01:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			132 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
{$mode objfpc}
 | 
						|
{$asmmode default}
 | 
						|
{$H-}
 | 
						|
{$goto on}
 | 
						|
{$inline on}
 | 
						|
{$interfaces corba}
 | 
						|
 | 
						|
{ This reduces the memory requirements a lot }
 | 
						|
{$PACKENUM 1}
 | 
						|
{$ifdef FPC_HAS_VARSETS}
 | 
						|
{$ifndef FPC_BIG_ENDIAN}
 | 
						|
{ $define USE_PACKSET1}
 | 
						|
{$endif}
 | 
						|
{$endif FPC_HAS_VARSETS}
 | 
						|
 | 
						|
{$ifdef USE_PACKSET1}
 | 
						|
{$PACKSET 1}
 | 
						|
{$endif USE_PACKSET1}
 | 
						|
 | 
						|
{ We don't use exceptions, so turn off the implicit
 | 
						|
  exceptions in the constructors }
 | 
						|
{$IMPLICITEXCEPTIONS OFF}
 | 
						|
 | 
						|
{ Inline small functions, but not when EXTDEBUG is used }
 | 
						|
{$ifndef EXTDEBUG}
 | 
						|
  {$define USEINLINE}
 | 
						|
{$endif EXTDEBUG}
 | 
						|
 | 
						|
{$define USEEXCEPT}
 | 
						|
 | 
						|
{$ifdef cpuarm}
 | 
						|
  {$packrecords c}
 | 
						|
{$endif cpuarm}
 | 
						|
 | 
						|
{$ifdef i386}
 | 
						|
  {$define cpu32bit}
 | 
						|
  {$define cpu32bitaddr}
 | 
						|
  {$define cpu32bitalu}
 | 
						|
  {$define x86}
 | 
						|
  {$define cpuflags}
 | 
						|
  {$define cpuextended}
 | 
						|
  {$define SUPPORT_MMX}
 | 
						|
  {$define cpumm}
 | 
						|
  {$define fewintregisters}
 | 
						|
{$endif i386}
 | 
						|
 | 
						|
{$ifdef x86_64}
 | 
						|
  {$define x86}
 | 
						|
  {$define cpuflags}
 | 
						|
  {$define cpu64bitalu}
 | 
						|
  {$define cpu64bitaddr}
 | 
						|
  {$define cpuextended}
 | 
						|
  {$define cpufloat128}
 | 
						|
  {$define cputargethasfixedstack}
 | 
						|
  {$define cpumm}
 | 
						|
{$endif x86_64}
 | 
						|
 | 
						|
{$ifdef alpha}
 | 
						|
  {$define cpu64bitalu}
 | 
						|
  {$define cpu64bitaddr}
 | 
						|
{$endif alpha}
 | 
						|
 | 
						|
{$ifdef sparc}
 | 
						|
  {$define cpu32bit}
 | 
						|
  {$define cpu32bitaddr}
 | 
						|
  {$define cpu32bitalu}
 | 
						|
  {$define cpuflags}
 | 
						|
  {$define cputargethasfixedstack}
 | 
						|
{$endif sparc}
 | 
						|
 | 
						|
{$ifdef powerpc}
 | 
						|
  {$define cpu32bit}
 | 
						|
  {$define cpu32bitaddr}
 | 
						|
  {$define cpu32bitalu}
 | 
						|
  {$define cpuflags}
 | 
						|
  {$define cputargethasfixedstack}
 | 
						|
  {$define cpumm}
 | 
						|
{$endif powerpc}
 | 
						|
 | 
						|
{$ifdef powerpc64}
 | 
						|
  {$define cpu64bitalu}
 | 
						|
  {$define cpu64bitaddr}
 | 
						|
  {$define cpuflags}
 | 
						|
  {$define cputargethasfixedstack}
 | 
						|
  {$define cpumm}
 | 
						|
{$endif powerpc64}
 | 
						|
 | 
						|
{$ifdef arm}
 | 
						|
  {$define cpu32bit}
 | 
						|
  {$define cpu32bitaddr}
 | 
						|
  {$define cpu32bitalu}
 | 
						|
  {$define cpuflags}
 | 
						|
  {$define cpufpemu}
 | 
						|
  {$define cpuneedsdiv32helper}
 | 
						|
  {$define cputargethasfixedstack}
 | 
						|
  { inherit FPC_ARMEL? }
 | 
						|
  {$if defined(CPUARMEL) and not(defined(FPC_OARM)) and not(defined(FPC_ARMEB))}
 | 
						|
    {$define FPC_ARMEL}
 | 
						|
  {$endif}
 | 
						|
  { inherit FPC_ARMEB? }
 | 
						|
  {$if defined(CPUARMEB) and not(defined(FPC_OARM)) and not(defined(FPC_ARMEL))}
 | 
						|
    {$define FPC_ARMEB}
 | 
						|
  {$endif}
 | 
						|
{$endif arm}
 | 
						|
 | 
						|
{$ifdef m68k}
 | 
						|
  {$define cpu32bit}
 | 
						|
  {$define cpu32bitaddr}
 | 
						|
  {$define cpu32bitalu}
 | 
						|
  {$define cpuflags}
 | 
						|
  {$define cpufpemu}
 | 
						|
{$endif m68k}
 | 
						|
 | 
						|
{$ifdef avr}
 | 
						|
  {$define cpu16bit}
 | 
						|
  {$define cpu16bitaddr}
 | 
						|
  {$define cpu16bitalu}
 | 
						|
  {$define cpuflags}
 | 
						|
  {$define cpunofpu}
 | 
						|
  {$define cpunodefaultint}
 | 
						|
{$endif avr}
 | 
						|
 | 
						|
{$IFDEF MACOS}
 | 
						|
{$DEFINE USE_FAKE_SYSUTILS}
 | 
						|
{$ENDIF MACOS}
 | 
						|
 | 
						|
{$define SUPPORT_UNALIGNED}
 | 
						|
 | 
						|
{$if not defined(cpui386) and defined(i386)}
 | 
						|
{$error Cross-compiling from non-i386 to i386 is not yet supported at this time }
 | 
						|
{$endif}
 |