fpcdefs.inc 735 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {$ifdef FPC}
  2. {$ifdef DELPHI}
  3. {$mode delphi}
  4. {$asmmode intel}
  5. {$else}
  6. {$mode objfpc}
  7. {$H-}
  8. {$goto on}
  9. { This reduces the memory requirements a lot }
  10. {$PACKENUM 1}
  11. {$define FPCPROCVAR}
  12. {$ifdef I386}
  13. {$define USEEXCEPT}
  14. {$endif}
  15. {$endif}
  16. {$endif}
  17. {$ifdef DELPHI}
  18. {$H-}
  19. {$J+}
  20. {$Z1}
  21. {$undef FPCPROCVAR}
  22. {$define USEEXCEPT}
  23. {$endif}
  24. {$ifdef i386}
  25. {$define x86}
  26. {$endif i386}
  27. {$ifdef x86_64}
  28. {$define x86}
  29. {$endif x86_64}
  30. {$ifdef ppc}
  31. {$define oldset}
  32. {$endif}
  33. {
  34. $Log$
  35. Revision 1.4 2002-07-23 12:34:29 daniel
  36. * Readded old set code. To use it define 'oldset'. Activated by default
  37. for ppc.
  38. Revision 1.3 2002/07/04 18:56:50 florian
  39. + log added
  40. }