12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {$mode objfpc}
- {$asmmode default}
- {$H-}
- {$goto on}
- {$inline on}
- { 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 x86}
- {$define cpuflags}
- {$define cpuextended}
- {$define USECMOV}
- {$define SUPPORT_MMX}
- {$define cpumm}
- {$define fewintregisters}
- {$endif i386}
- {$ifdef x86_64}
- {$define x86}
- {$define cpuflags}
- {$define cpu64bit}
- {$define cpuextended}
- {$define cpufloat128}
- {$define cputargethasfixedstack}
- {$define USECMOV}
- {$define cpumm}
- {$endif x86_64}
- {$ifdef alpha}
- {$define cpu64bit}
- {$endif alpha}
- {$ifdef sparc}
- {$define cpuflags}
- {$define cputargethasfixedstack}
- {$endif sparc}
- {$ifdef powerpc}
- {$define cpuflags}
- {$define cputargethasfixedstack}
- {$define cpumm}
- {$endif powerpc}
- {$ifdef powerpc64}
- {$define cpu64bit}
- {$define cpuflags}
- {$define cputargethasfixedstack}
- {$define cpumm}
- {$endif powerpc64}
- {$ifdef arm}
- {$define cpuflags}
- {$define cpufpemu}
- {$define cpuneedsdiv32helper}
- {$define cputargethasfixedstack}
- {$endif arm}
- {$ifdef m68k}
- {$define cpuflags}
- {$define cpufpemu}
- {$endif m68k}
- {$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}
|