buildrtl.pp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. unit buildrtl;
  2. interface
  3. {$IFDEF FPC_DOTTEDUNITS}
  4. uses
  5. si_prc,
  6. AmigaApi.AThreads, TP.DOS, System.SysUtils,
  7. System.ExeInfo,
  8. System.CTypes, System.Strings,
  9. System.RtlConsts, System.SysConst, System.Math, System.Types,
  10. {$ifdef cpui386}
  11. System.CPU, System.CPU.MMX, System.LineInfo,
  12. {$endif}
  13. {$ifdef cpux86_64}
  14. System.CPU,
  15. {$endif}
  16. System.TypInfo, System.SortBase, System.FGL, System.Classes,
  17. System.CharSet, System.Character, System.GetOpts,
  18. System.FPWideString, fpintres, System.CodePages.All,
  19. System.SoftFPU, System.SoftFpuX80, System.SoftFpu128, System.UFloatX80, System.UFloat128;
  20. {$ELSE FPC_DOTTEDUNITS}
  21. uses
  22. si_prc,
  23. athreads, dos, sysutils,
  24. ctypes, strings,
  25. rtlconsts, sysconst, math, types,
  26. exeinfo,
  27. {$ifdef cpui386}
  28. cpu, mmx, lineinfo,
  29. {$endif}
  30. {$ifdef cpux86_64}
  31. cpu,
  32. {$endif}
  33. typinfo, sortbase, fgl, classes,
  34. charset, character, getopts,
  35. fpwidestring, fpintres,
  36. softfpu, sfpux80, ufloatx80, sfpu128, ufloat128;
  37. {$ENDIF FPC_DOTTEDUNITS}
  38. implementation
  39. end.